Skip to content

Commit

Permalink
default to RUN_SINGLETHREAD, to cooperate nicely with sqlalchemy memo…
Browse files Browse the repository at this point in the history
…ry engines
  • Loading branch information
eklitzke authored and bickfordb committed May 18, 2010
1 parent c24ae34 commit 9b67765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qa.py
Expand Up @@ -338,7 +338,7 @@ def my_test(ctx):
option_parser.add_option('-v', '--verbose', action='store_true')
option_parser.add_option('-d', '--debug', action='store_true')
option_parser.add_option('-f', '--filter', dest='filter', action='append', help='Run only tests that match this regular epxression pattern. Test names are of the form "dotted-module-path:function-name"', default=[])
option_parser.add_option('-c', '--concurrency-mode', default='thread', choices=[RUN_SINGLETHREAD, RUN_MULTIPROCESS, RUN_MULTITHREAD])
option_parser.add_option('-c', '--concurrency-mode', default='single', choices=[RUN_SINGLETHREAD, RUN_MULTIPROCESS, RUN_MULTITHREAD])
option_parser.add_option('-w', '--num-workers', default=10, type='int', help='The number of workers (if mode is "process" or "thread")')
option_parser.add_option('-m', '--module', dest='modules', default=[], action='append')

Expand Down

0 comments on commit 9b67765

Please sign in to comment.