Skip to content

Commit

Permalink
Fix excluded scripts for adding support scripts still in the directory
Browse files Browse the repository at this point in the history
  • Loading branch information
vatsalghelani-csa committed Sep 19, 2024
1 parent df535c2 commit 20dc8ee
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/python_testing/execute_python_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,15 @@ def main(search_directory, env_file):
"hello_external_runner.py", # Code/Test not being used or not shared code for any other tests
"hello_test.py", # Is a template for tests
"test_plan_support.py", # Shared code for TC_*, not a standalone test
"test_plan_table_generator.py" # Code/Test not being used or not shared code for any other tests
"test_plan_table_generator.py", # Code/Test not being used or not shared code for any other tests
"basic_composition_support.py", # Test support/shared code script, not a standalone test
"choice_conformance_support.py", # Test support/shared code script, not a standalone test
"conformance_support.py", # Test support/shared code script, not a standalone test
"global_attribute_ids.py", # Test support/shared code script, not a standalone test
"matter_testing_support.py", # Test support/shared code script, not a standalone test
"pics_support.py", # Test support/shared code script, not a standalone test
"spec_parsing_support.py", # Test support/shared code script, not a standalone test
"taglist_and_topology_test_support.py" # Test support/shared code script, not a standalone test
}

# Get all .py files in the directory
Expand Down

0 comments on commit 20dc8ee

Please sign in to comment.