From 20513e1c165af8c40623de88485c23665522637b Mon Sep 17 00:00:00 2001 From: Simon Aquino Date: Tue, 1 Jul 2014 00:51:58 +0100 Subject: [PATCH] Specify individual long tests to run The test script currently only allows to run all the long test. This change will allow a user to specify individual long tests to run. --- system/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/system/run.py b/system/run.py index 6331a300..21f673c2 100755 --- a/system/run.py +++ b/system/run.py @@ -73,6 +73,7 @@ if __name__ == "__main__": if len(sys.argv) > 1: if sys.argv[1] == "--long": include_long_tests = True + tests = sys.argv[2:] else: tests = sys.argv[1:] run(include_long_tests, tests)