Skip to content

Commit f43e2c8

Browse files
committed
test.py: now wont output extra warnings
1 parent 53d1ab4 commit f43e2c8

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
@@ -228,7 +228,7 @@ def main():
228228
test_folders = []
229229
tests_combined = test_categories + test_folders
230230
if args.tests:
231-
test_categories = [x for x in tests_combined if x in args.tests or x == "integration"]
231+
test_categories = [x for x in tests_combined if x in args.tests ]
232232
if args.skip:
233233
test_categories = [x for x in tests_combined if not x in args.skip]
234234

0 commit comments

Comments
 (0)