in bot/code_coverage_bot/chunk_mapping.py [0:0]
def is_chunk_only_suite(suite):
# Ignore test-coverage, test-coverage-wpt, awsy and talos.
if any(suite.startswith(prefix) for prefix in IGNORED_SUITE_PREFIXES):
return False
# Ignore suites supported by test-coverage.
if any(
test_coverage_suite in suite for test_coverage_suite in TEST_COVERAGE_SUITES
):
return False
return True