Skip to content

Commit

Permalink
CI: exclude test/files from pyupgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
danigm committed Sep 26, 2024
1 parent df92b3e commit 273a9e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- run: pytest
- run: flake8
- run: /github/home/.local/bin/ruff check .
- run: find . -name '*.py' | xargs /github/home/.local/bin/pyupgrade --py38-plus
- run: find . -not -path "test/files/*" -name '*.py' | xargs /github/home/.local/bin/pyupgrade --py38-plus
- run: python3 -m cProfile -o profile.stats lint.py -V test/source/* test/binary/* > /dev/null
- run: python3 test/dump_stats.py profile.stats
- name: Collect the coveralls report
Expand Down

0 comments on commit 273a9e4

Please sign in to comment.