Skip to content

Commit 035dd38

Browse files
committed
test.py: Quick fix for failing dev branch
1 parent 6ddc68a commit 035dd38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def main():
237237
stress = stress_test() if "stress" in test_categories else 0
238238
unit = unit_tests() if "unit" in test_categories else 0
239239
examples = examples_working() if "examples" in test_categories else 0
240-
folders = integration_tests(subfolder=args.tests[0]) if args.tests[0] in test_categories else 0
240+
folders = integration_tests(subfolder=test_categories[0]) if test_categories[0] in test_folders else 0
241241

242242
status = max(integration, stress, unit, examples, folders)
243243

0 commit comments

Comments
 (0)