diff --git a/Test.py b/Test.py index ce6a25f47e68cc8d96eac3c0bca23dad3eeae9f4..4e550cb29e3e968d13650281179bcf7ee0df87bc 100644 --- a/Test.py +++ b/Test.py @@ -13,8 +13,8 @@ def allFiles(testDir): def main(): - if sys.argv[1]: - testFiles = ["./Tests/" + sys.argv[1]] + if len(sys.argv) > 1: + testFiles = ["./Tests/" + f for f in sys.argv[1:]] else: # All files in the test directory testDirectory = "./Tests/"