Skip to content

Commit fcffe5a

Browse files
Fix CI push-trigger path filter: test/** -> tests/**
The tests workflow's push trigger filtered on src/**, test/**, setup.py, requirements.txt, and Makefile -- but the actual test directory is tests/** (plural), so pushes touching only tests/ never queued a CI run at all. Caught while iterating on tests/ test_importer.py: the fix-up commit for that file needed a PR just to get any CI run at all.
1 parent c78f9aa commit fcffe5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
paths:
66
- src/**
7-
- test/**
7+
- tests/**
88
- setup.py
99
- requirements.txt
1010
- Makefile

0 commit comments

Comments
 (0)