diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-09-14 11:37:50 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-09-14 11:37:50 -0400 |
commit | 10ad109bb665a714dff27fd68f06c1b495a7169d (patch) | |
tree | b6bd222c082a2468c5c26a8dbd59787f537ef897 /tests/requirements.py | |
parent | 10e9b2e1eab69bbfc249562994b951b3dc191bb8 (diff) | |
download | alembic-10ad109bb665a714dff27fd68f06c1b495a7169d.tar.gz |
- move pretty much all of sqlalchemy.testing over for now, as we'd
like to run tests against 0.8 and even late 0.7 versions with the same
capabilities, as well as run parallel testing against all of them.
we need a consistent system to get that all to work, so for now
we have the whole SQLA system shoved into here, not ideal but we have
a very good testing situation for now. Once we target 0.9.4 at the lowest
we should be able to move all this out.
- re-support 0.7, starting at 0.7.6 which is where things mostly work.
All tests, taking into account known skips and fails which are
added here for 0.7, early 0.8s, pass on 0.7.9.
Diffstat (limited to 'tests/requirements.py')
-rw-r--r-- | tests/requirements.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/requirements.py b/tests/requirements.py index b158dff..1c2c278 100644 --- a/tests/requirements.py +++ b/tests/requirements.py @@ -1,8 +1,9 @@ from alembic.testing.requirements import SuiteRequirements -from sqlalchemy.testing import exclusions +from alembic.testing import exclusions class DefaultRequirements(SuiteRequirements): + @property def schemas(self): """Target database must support external schemas, and have one |