Skip to content

Commit 1c98e09

Browse files
committed
Tweaks
1 parent 0b15cde commit 1c98e09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/scripts/selective-testing/compute-selected-tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
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).

0 commit comments

Comments
 (0)