diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2018-07-13 12:36:06 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2018-07-13 12:37:28 -0400 |
commit | a0c7a06c98f929b9255e6b99143937802e46f49b (patch) | |
tree | f7b570c7f40e203fd232ca9751c362739579d800 /tests/test_batch.py | |
parent | 618f0d9d05f89302467b71eaf4b67f1bd943aaf3 (diff) | |
download | alembic-a0c7a06c98f929b9255e6b99143937802e46f49b.tar.gz |
Drop support for all SQLAlchemy < 0.9
With the 1.0 release, Alembic's minimum SQLAlchemy support version
moves to 0.9.0, previously 0.7.9.
Change-Id: I299d8af11c5982c4a792da1fcb96e4b437af687d
Diffstat (limited to 'tests/test_batch.py')
-rw-r--r-- | tests/test_batch.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_batch.py b/tests/test_batch.py index 07a5536..7ea1bcc 100644 --- a/tests/test_batch.py +++ b/tests/test_batch.py @@ -21,7 +21,6 @@ from sqlalchemy import exc class BatchApplyTest(TestBase): - __requires__ = ('sqlalchemy_08', ) def setUp(self): self.op = Operations(mock.Mock(opts={})) @@ -420,9 +419,6 @@ class BatchApplyTest(TestBase): ddl_contains='FOREIGN KEY(user_id_3, user_id_version) ' 'REFERENCES "user" (id, id_version)') - # _get_colspec() in 0.8 calls upon fk.column when schema is - # present. not sure if we want to try to fix this - @config.requirements.fail_before_sqla_09 def test_regen_multi_fk_schema(self): impl = self._multi_fk_fixture(schema='foo_schema') self._assert_impl( @@ -558,7 +554,6 @@ class BatchApplyTest(TestBase): class BatchAPITest(TestBase): - __requires__ = ('sqlalchemy_08', ) @contextmanager def _fixture(self, schema=None): @@ -754,7 +749,6 @@ class BatchAPITest(TestBase): class CopyFromTest(TestBase): - __requires__ = ('sqlalchemy_08', ) def _fixture(self): self.metadata = MetaData() @@ -918,7 +912,6 @@ class CopyFromTest(TestBase): class BatchRoundTripTest(TestBase): - __requires__ = ('sqlalchemy_09', ) __only_on__ = "sqlite" def setUp(self): |