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