Skip to content

Commit 9c2a011

Browse files
committed
fix typo in testing/languages
1 parent ee49d42 commit 9c2a011

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

testing/languages

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ EXCLUDED = frozenset((
1717

1818

1919
def _always_run() -> frozenset[str]:
20-
ret = ['.github/workflows/languages.yml', 'testing/languages']
20+
ret = ['.github/workflows/languages.yaml', 'testing/languages']
2121
ret.extend(
2222
os.path.join('pre_commit/resources', fname)
2323
for fname in os.listdir('pre_commit/resources')
@@ -57,6 +57,8 @@ def main() -> int:
5757
]
5858

5959
triggers_all = _always_run()
60+
for fname in triggers_all:
61+
assert os.path.exists(fname), fname
6062

6163
if not args.all:
6264
with concurrent.futures.ThreadPoolExecutor(os.cpu_count()) as exe:

0 commit comments

Comments
 (0)