File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/workflows/scripts/selective-testing Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3535 ".github/CODEOWNERS" : ["tests/sentry/api/test_api_owners.py" ],
3636}
3737
38- # Tests that should always be run, even if no files are changed .
39- TESTS_TO_ALWAYS_RUN : set [str ] = {
38+ # Tests that should always be run even if not explicitly selected .
39+ ALWAYS_RUN_TESTS : set [str ] = {
4040 "tests/sentry/taskworker/test_config.py" ,
4141}
4242
@@ -170,7 +170,7 @@ def main() -> int:
170170 affected_test_files .update (existing_changed_test_files )
171171
172172 # Include tests that should always be run
173- affected_test_files .update (TESTS_TO_ALWAYS_RUN )
173+ affected_test_files .update (ALWAYS_RUN_TESTS )
174174
175175 # Filter out any test files found via coverage lookup that no longer exist
176176 # (e.g. a deleted test file that covered the same source as another changed file).
You can’t perform that action at this time.
0 commit comments