We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57a716b commit 5088b02Copy full SHA for 5088b02
test/worlds/__init__.py
@@ -12,7 +12,7 @@ def load_tests(loader, standard_tests, pattern):
12
all_tests = [
13
test_case for folder in folders if os.path.exists(folder)
14
for test_collection in loader.discover(folder, top_level_dir=file_path)
15
- for test_suite in test_collection
+ for test_suite in test_collection if isinstance(test_suite, unittest.suite.TestSuite)
16
for test_case in test_suite
17
]
18
0 commit comments