summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGord Thompson <gord@gordthompson.com>2020-04-18 08:41:04 -0600
committerGord Thompson <gord@gordthompson.com>2020-04-18 08:41:04 -0600
commit6e208823a66723c842975e0b75ec0e8b34ce0d2f (patch)
tree21c588c5e37bd66c3da3d3aadbb2d84dd806d4dc /lib
parent2f617f56f2acdce00b88f746c403cf5ed66d4d27 (diff)
downloadsqlalchemy-6e208823a66723c842975e0b75ec0e8b34ce0d2f.tar.gz
Add @requirements.schemas to test_create_table_schema
Prevent test_create_table_schema from failing for databases that do not support schemas. Change-Id: I0f5f129c313ee6023be2e6d84610355afc48c05c
Diffstat (limited to 'lib')
-rw-r--r--lib/sqlalchemy/testing/suite/test_ddl.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_ddl.py b/lib/sqlalchemy/testing/suite/test_ddl.py
index 93706338c..a6f15a72d 100644
--- a/lib/sqlalchemy/testing/suite/test_ddl.py
+++ b/lib/sqlalchemy/testing/suite/test_ddl.py
@@ -45,6 +45,7 @@ class TableDDLTest(fixtures.TestBase):
self._simple_roundtrip(table)
@requirements.create_table
+ @requirements.schemas
@util.provide_metadata
def test_create_table_schema(self):
table = self._simple_fixture(schema=config.test_schema)