We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d108b7 commit 3656fb2Copy full SHA for 3656fb2
1 file changed
tests/test_suite.py
@@ -6,6 +6,7 @@
6
from sqlalchemy.testing.suite import FutureTableDDLTest as _FutureTableDDLTest
7
from sqlalchemy.testing.suite import CTETest as _CTETest
8
from sqlalchemy.testing.suite import DifficultParametersTest as _DifficultParametersTest
9
+from sqlalchemy.testing.suite import ComponentReflectionTest as _ComponentReflectionTest
10
from sqlalchemy.testing import fixtures
11
from sqlalchemy.testing.assertions import eq_
12
from sqlalchemy.testing import config
@@ -724,3 +725,9 @@ def test_with(self):
724
725
params,
726
).fetchall()
727
assert result == [(123, "hello", "hello2", "global_value")]
728
+
729
730
+@pytest.mark.skip
731
+class ComponentReflectionTest(_ComponentReflectionTest):
732
+ # TODO: fails when run in bulk
733
+ pass
0 commit comments