diff options
author | Scott Dugas <scott.dugas@foundationdb.com> | 2014-10-23 17:59:27 -0400 |
---|---|---|
committer | Scott Dugas <scott.dugas@foundationdb.com> | 2014-10-23 17:59:27 -0400 |
commit | fdbea87958628b641a855d4c3b35833330de49e0 (patch) | |
tree | e8d17b6884665e196c562ae825d1e223fdfdb506 | |
parent | 470061bcdc0d1cdd2997354962b9e34cd9a43c33 (diff) | |
download | sqlalchemy-fdbea87958628b641a855d4c3b35833330de49e0.tar.gz |
require check constraints for tests
-rw-r--r-- | test/sql/test_constraints.py | 1 | ||||
-rw-r--r-- | test/sql/test_metadata.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/test/sql/test_constraints.py b/test/sql/test_constraints.py index 2f054dac1..c0b5806ac 100644 --- a/test/sql/test_constraints.py +++ b/test/sql/test_constraints.py @@ -130,6 +130,7 @@ class ConstraintGenTest(fixtures.TestBase, AssertsExecutionResults): *assertions ) + @testing.requires.check_constraints @testing.provide_metadata def test_check_constraint_create(self): metadata = self.metadata diff --git a/test/sql/test_metadata.py b/test/sql/test_metadata.py index 4a484dbac..ff79c126a 100644 --- a/test/sql/test_metadata.py +++ b/test/sql/test_metadata.py @@ -486,6 +486,7 @@ class MetaDataTest(fixtures.TestBase, ComparesTables): class ToMetaDataTest(fixtures.TestBase, ComparesTables): + @testing.requires.check_constraints def test_copy(self): from sqlalchemy.testing.schema import Table meta = MetaData() |