We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ee75b5 + e0b3e58 commit abd9095Copy full SHA for abd9095
tests/pystackql_tests.py
@@ -222,7 +222,8 @@ def test_12_execute_with_pandas_output(self):
222
223
@pystackql_test_setup(output='csv')
224
def test_13_execute_with_csv_output(self):
225
- result = self.stackql.execute(aws_query)
+ # result = self.stackql.execute(aws_query)
226
+ result = self.stackql.execute(google_query)
227
is_valid_csv = isinstance(result, str) and result.count("\n") >= 1 and result.count(",") >= 1
228
self.assertTrue(is_valid_csv, f"Result is not a valid CSV: {result}")
229
print_test_result(f"Test execute with csv output\nRESULT_COUNT: {len(result.splitlines())}", is_valid_csv)
0 commit comments