diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-01-23 10:31:20 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-01-23 10:31:20 -0500 |
commit | 20a15345a3f1e4755613d908a3d3cfe1bfe35c6c (patch) | |
tree | fa05949efae8888c7452ca6fbab7257be4924bbb /lib/sqlalchemy | |
parent | b290352ae7980d0263310c167da33e26be83b16b (diff) | |
download | sqlalchemy-20a15345a3f1e4755613d908a3d3cfe1bfe35c6c.tar.gz |
remove __allowlist__
this testing element is not used
Change-Id: I484c9a9f070122545fcdabe5a7f13b0bfca17023
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r-- | lib/sqlalchemy/testing/fixtures.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/sqlalchemy/testing/fixtures.py b/lib/sqlalchemy/testing/fixtures.py index 515be459b..62dd9040e 100644 --- a/lib/sqlalchemy/testing/fixtures.py +++ b/lib/sqlalchemy/testing/fixtures.py @@ -28,10 +28,6 @@ from ..schema import sort_tables_and_constraints @config.mark_base_test_class() class TestBase(object): - # A sequence of database names to always run, regardless of the - # constraints below. - __allowlist__ = () - # A sequence of requirement names matching testing.requires decorators __requires__ = () |