diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-03-30 00:01:09 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-03-30 00:01:09 +0000 |
commit | dab9abf7893333b7dabaee6de6cddfd93df7169a (patch) | |
tree | 8df24ddc7169e39a3cb1ac6dd695199b0a8e9a82 /test | |
parent | 6b7bd8fb1575ce47d221e8c9a9cc579abc271c92 (diff) | |
download | sqlalchemy-dab9abf7893333b7dabaee6de6cddfd93df7169a.tar.gz |
thank you, SVN, for being completely idiotic and non-intutive. rolling back incorrect checkin to trunk
Diffstat (limited to 'test')
-rw-r--r-- | test/testbase.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/testbase.py b/test/testbase.py index c02b36b52..8a1d9ee59 100644 --- a/test/testbase.py +++ b/test/testbase.py @@ -49,7 +49,6 @@ def parse_argv(): parser.add_option("--enginestrategy", action="store", default=None, dest="enginestrategy", help="engine strategy (plain or threadlocal, defaults to plain)") parser.add_option("--coverage", action="store_true", dest="coverage", help="Dump a full coverage report after running") parser.add_option("--reversetop", action="store_true", dest="topological", help="Reverse the collection ordering for topological sorts (helps reveal dependency issues)") - parser.add_option("--serverside", action="store_true", dest="serverside", help="Turn on server side cursors for PG") (options, args) = parser.parse_args() sys.argv[1:] = args @@ -74,7 +73,7 @@ def parse_argv(): db_uri = 'oracle://scott:tiger@127.0.0.1:1521' elif DBTYPE == 'oracle8': db_uri = 'oracle://scott:tiger@127.0.0.1:1521' - opts['use_ansi'] = False + opts = {'use_ansi':False} elif DBTYPE == 'mssql': db_uri = 'mssql://scott:tiger@SQUAWK\\SQLEXPRESS/test' elif DBTYPE == 'firebird': @@ -95,9 +94,6 @@ def parse_argv(): global with_coverage with_coverage = options.coverage - - if options.serverside: - opts['server_side_cursors'] = True if options.enginestrategy is not None: opts['strategy'] = options.enginestrategy |