diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-03-24 17:43:06 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-03-24 23:28:20 -0400 |
commit | 346e2bc0a64f5d451d951d04a7ee36b1dd7ea8fa (patch) | |
tree | 36f8659b2164bb646e38e5da9e05de44a580649f /test/aaa_profiling/test_memusage.py | |
parent | 218177c4d60c5c4ab0524a0ab347e1c711458e3c (diff) | |
download | sqlalchemy-346e2bc0a64f5d451d951d04a7ee36b1dd7ea8fa.tar.gz |
Use class-local metadata for declarative base
Fixed regression where the ``.metadata`` attribute on a per class level
would not be honored, breaking the use case of per-class-hierarchy
:class:`.schema.MetaData` for abstract declarative classes and mixins.
Fixes: #6128
Change-Id: I5c15436b5c5171105dc1a0192fa744daf79a344d
Diffstat (limited to 'test/aaa_profiling/test_memusage.py')
-rw-r--r-- | test/aaa_profiling/test_memusage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aaa_profiling/test_memusage.py b/test/aaa_profiling/test_memusage.py index b1dd29a7e..d8896a3d6 100644 --- a/test/aaa_profiling/test_memusage.py +++ b/test/aaa_profiling/test_memusage.py @@ -341,7 +341,7 @@ class MemUsageTest(EnsureZeroed): class MemUsageWBackendTest(EnsureZeroed): __tags__ = ("memory_intensive",) - __requires__ = "cpython", "memory_process_intensive" + __requires__ = "cpython", "memory_process_intensive", "no_asyncio" __sparse_backend__ = True # ensure a pure growing test trips the assertion |