summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/plugin/plugin_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing/plugin/plugin_base.py')
-rw-r--r--lib/sqlalchemy/testing/plugin/plugin_base.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/sqlalchemy/testing/plugin/plugin_base.py b/lib/sqlalchemy/testing/plugin/plugin_base.py
index b90858512..16924a0a1 100644
--- a/lib/sqlalchemy/testing/plugin/plugin_base.py
+++ b/lib/sqlalchemy/testing/plugin/plugin_base.py
@@ -167,14 +167,6 @@ def setup_options(make_option):
"when -n<num> is used",
)
make_option(
- "--reversetop",
- action="store_true",
- dest="reversetop",
- default=False,
- help="Use a random-ordering set implementation in the ORM "
- "(helps reveal dependency issues)",
- )
- make_option(
"--requirements",
action="callback",
type=str,
@@ -476,14 +468,6 @@ def _prep_testing_database(options, file_config):
@post
-def _reverse_topological(options, file_config):
- if options.reversetop:
- from sqlalchemy.orm.util import randomize_unitofwork
-
- randomize_unitofwork()
-
-
-@post
def _post_setup_options(opt, file_config):
from sqlalchemy.testing import config