@@ -41,6 +41,9 @@ def setUpModule():
4141 print ("downloading aws provider for tests..." )
4242 res = PyStackQLTestsBase .stackql .executeStmt (registry_pull_aws_query )
4343 print (res )
44+ print ("downloading awscc provider for tests..." )
45+ res = PyStackQLTestsBase .stackql .executeStmt (registry_pull_awscc_query )
46+ print (res )
4447 print ("downloading google provider for tests..." )
4548 res = PyStackQLTestsBase .stackql .executeStmt (registry_pull_google_query )
4649 print (res )
@@ -201,8 +204,8 @@ def test_12_execute_with_pandas_output(self):
201204 self .assertTrue (is_valid_dataframe , f"Result is not a valid DataFrame: { result } " )
202205 # Check datatypes of the columns
203206 expected_dtypes = {
204- 'instance_state ' : 'object' , # This should be 'object' for older Pandas versions
205- 'num_instances ' : 'int64'
207+ 'year ' : 'int64' ,
208+ 'num_buckets ' : 'int64'
206209 }
207210 for col , expected_dtype in expected_dtypes .items ():
208211 actual_dtype = result [col ].dtype
@@ -280,8 +283,8 @@ def test_22_execute_server_mode_pandas_output(self):
280283 self .assertTrue (is_valid_dataframe , f"Result is not a valid DataFrame: { result } " )
281284 # Check datatypes of the columns
282285 expected_dtypes = {
283- 'instance_state ' : 'object' , # This should be 'object' for older Pandas versions
284- 'num_instances ' : 'int64'
286+ 'year ' : 'int64' ,
287+ 'num_buckets ' : 'int64'
285288 }
286289 for col , expected_dtype in expected_dtypes .items ():
287290 actual_dtype = result [col ].dtype
0 commit comments