Commit 01fd8c2f authored by Denis Bilenko's avatar Denis Bilenko

runall.py: fix --dry-run option

parent d0f31b70
...@@ -54,7 +54,7 @@ def main(): ...@@ -54,7 +54,7 @@ def main():
parser = OptionParser() parser = OptionParser()
parser.add_option('--skip', action='store_true', default=False, parser.add_option('--skip', action='store_true', default=False,
help="Run all the tests except those provided on command line") help="Run all the tests except those provided on command line")
parser.add_option('--dry-run') parser.add_option('--dry-run', action='store_true', default=False)
options, tests = parser.parse_args() options, tests = parser.parse_args()
if options.skip: if options.skip:
tests = enum_tests() - set(tests) tests = enum_tests() - set(tests)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment