Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion testing/languages
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ EXCLUDED = frozenset((


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

triggers_all = _always_run()
for fname in triggers_all:
assert os.path.exists(fname), fname

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