We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8159afd commit c934fd2Copy full SHA for c934fd2
tests/e2e/test_driver.py
@@ -34,11 +34,6 @@
34
decorated = skipUnless(pysql_supports_arrow(), 'Decimal tests need arrow support')(fn)
35
setattr(DecimalTestsMixin, name, decorated)
36
37
-# manually decorate PySQLStagingIngestionTestSuite to need arrow support
38
-for name in loader.getTestCaseNames(PySQLStagingIngestionTestSuiteMixin, 'test_'):
39
- fn = getattr(PySQLStagingIngestionTestSuiteMixin, name)
40
- decorated = skipIf(True, "DECO infra doesn't expose staging ingestion user email yet.")(fn)
41
- setattr(PySQLStagingIngestionTestSuiteMixin, name, decorated)
42
43
get_args_from_env = True
44
0 commit comments