Skip to content

Commit 20dc8ee

Browse files
Fix excluded scripts for adding support scripts still in the directory
1 parent df535c2 commit 20dc8ee

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/python_testing/execute_python_tests.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,15 @@ def main(search_directory, env_file):
9494
"hello_external_runner.py", # Code/Test not being used or not shared code for any other tests
9595
"hello_test.py", # Is a template for tests
9696
"test_plan_support.py", # Shared code for TC_*, not a standalone test
97-
"test_plan_table_generator.py" # Code/Test not being used or not shared code for any other tests
97+
"test_plan_table_generator.py", # Code/Test not being used or not shared code for any other tests
98+
"basic_composition_support.py", # Test support/shared code script, not a standalone test
99+
"choice_conformance_support.py", # Test support/shared code script, not a standalone test
100+
"conformance_support.py", # Test support/shared code script, not a standalone test
101+
"global_attribute_ids.py", # Test support/shared code script, not a standalone test
102+
"matter_testing_support.py", # Test support/shared code script, not a standalone test
103+
"pics_support.py", # Test support/shared code script, not a standalone test
104+
"spec_parsing_support.py", # Test support/shared code script, not a standalone test
105+
"taglist_and_topology_test_support.py" # Test support/shared code script, not a standalone test
98106
}
99107

100108
# Get all .py files in the directory

0 commit comments

Comments
 (0)