Skip to content

Commit e3a8f5a

Browse files
committed
Fix pycodestyle/flake8 glob on Windows: use directory arg instead of tests/*.py
1 parent f338974 commit e3a8f5a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
3636
- name: Pre-Tests code smell validation
3737
run: |
38-
pycodestyle -v --ignore=E501,E722 bitmath/__init__.py tests/*.py
39-
flake8 --select=F bitmath/__init__.py tests/*.py
38+
pycodestyle -v --ignore=E501,E722 bitmath/__init__.py tests/
39+
flake8 --select=F bitmath/__init__.py tests/
4040
4141
- name: Run Unit Tests
4242
run: |

0 commit comments

Comments
 (0)