diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-10-21 17:32:04 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-10-22 18:27:48 -0400 |
| commit | 240d9a60ccdb540543a72d9ff30a6f50d33acc5d (patch) | |
| tree | ff665f4c9a1e7dac8311732bf8ecc1a370a388fc /lib/sqlalchemy/testing/__init__.py | |
| parent | d76cb7213557c24609a1a75d8c391aea0179562a (diff) | |
| download | sqlalchemy-240d9a60ccdb540543a72d9ff30a6f50d33acc5d.tar.gz | |
Refactor dialect tests for combinations
Dialect tests tend to have a lot of lists of types,
SQL constructs etc, convert as many of these to @combinations
as possible.
This is exposing that we don't have per-combination
exclusion rules set up which is making things a little bit
cumbersome.
Also set up a fixture that does metadata + DDL.
Change-Id: Ief820e48c9202982b0b1e181b87862490cd7b0c3
Diffstat (limited to 'lib/sqlalchemy/testing/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/testing/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/__init__.py b/lib/sqlalchemy/testing/__init__.py index 4f28461e3..1e506ccb1 100644 --- a/lib/sqlalchemy/testing/__init__.py +++ b/lib/sqlalchemy/testing/__init__.py @@ -53,6 +53,7 @@ from .exclusions import skip_if # noqa from .util import adict # noqa from .util import fail # noqa from .util import force_drop_names # noqa +from .util import metadata_fixture # noqa from .util import provide_metadata # noqa from .util import rowset # noqa from .util import run_as_contextmanager # noqa |
