Commit 7533a694 authored by Peter Renström's avatar Peter Renström

testrunner: Make 'tests' argument optional

parent d2b71517
......@@ -277,7 +277,7 @@ def main():
parser.add_argument('--failfast', action='store_true')
parser.add_argument("--coverage", action="store_true")
parser.add_argument("--quiet", action="store_true")
parser.add_argument('tests', nargs='+')
parser.add_argument('tests', nargs='*')
options = parser.parse_args()
FAILING_TESTS = []
coverage = False
......
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