Skip to content

Commit

Permalink
do not run pre-commit on Python3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed Aug 9, 2024
1 parent 8457f3f commit a5d8805
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
include:
- tox-env: py38
python-version: "3.8"
posargs: "-m 'not precommit'"
- tox-env: py39
python-version: "3.9"
- tox-env: py310
Expand Down Expand Up @@ -54,7 +55,7 @@ jobs:
python -m pip install --require-hashes -r requirements.txt
- name: Run bake test suite
run:
python -m tox -e ${{ matrix.tox-env }}
python -m tox -e ${{ matrix.tox-env }} -- ${{ matrix.posargs }}
# - name: Archive package
# if: ${{ matrix.tox-env == 'py39' }}
# uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ commands_pre =
pip list
pip check
commands =
pytest
pytest {posargs}

0 comments on commit a5d8805

Please sign in to comment.