Skip to content

Commit de06ee0

Browse files
committed
Update custom linter
1 parent 304f484 commit de06ee0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/test_custom_linters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ def _ci_patterns(*, repository_root: Path) -> set[str]:
1818
"""
1919
Return the CI patterns given in the CI configuration file.
2020
"""
21-
ci_file = repository_root / ".github" / "workflows" / "ci.yml"
21+
ci_file = repository_root / ".github" / "workflows" / "test.yml"
2222
github_workflow_config = yaml.safe_load(stream=ci_file.read_text())
23-
matrix = github_workflow_config["jobs"]["build"]["strategy"]["matrix"]
23+
matrix = github_workflow_config["jobs"]["ci-tests"]["strategy"]["matrix"]
2424
ci_pattern_list = matrix["ci_pattern"]
2525
ci_patterns = set(ci_pattern_list)
2626
assert len(ci_pattern_list) == len(ci_patterns)

0 commit comments

Comments
 (0)