diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2021-01-03 00:52:41 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2021-01-03 00:52:41 +0000 |
| commit | 1c35a3790c1f186b91d556fb161c1958cbf718bb (patch) | |
| tree | 6c8074a9f1b5d818e4faa679d52b5745cb86b7cc /lib/sqlalchemy/testing/fixtures.py | |
| parent | 3f72c2c6cbc76506af57f136542f30bf68261898 (diff) | |
| parent | 5ba427f6daad4e7224267d11f7c6d99bd68f3d0e (diff) | |
| download | sqlalchemy-1c35a3790c1f186b91d556fb161c1958cbf718bb.tar.gz | |
Merge "Repair async test refactor"
Diffstat (limited to 'lib/sqlalchemy/testing/fixtures.py')
| -rw-r--r-- | lib/sqlalchemy/testing/fixtures.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/sqlalchemy/testing/fixtures.py b/lib/sqlalchemy/testing/fixtures.py index a52fdd196..0ede25176 100644 --- a/lib/sqlalchemy/testing/fixtures.py +++ b/lib/sqlalchemy/testing/fixtures.py @@ -48,11 +48,6 @@ class TestBase(object): # skipped. __skip_if__ = None - # If this class should be wrapped in asyncio compatibility functions - # when using an async engine. This should be set to False only for tests - # that use the asyncio features of sqlalchemy directly - __asyncio_wrap__ = True - def assert_(self, val, msg=None): assert val, msg @@ -95,12 +90,6 @@ class TestBase(object): # engines.drop_all_tables(metadata, config.db) -class AsyncTestBase(TestBase): - """Mixin marking a test as using its own explicit asyncio patterns.""" - - __asyncio_wrap__ = False - - class FutureEngineMixin(object): @classmethod def setup_class(cls): |
