Skip to content

Commit

Permalink
Simplify pipeline code, no unnecessary install of wheel package
Browse files Browse the repository at this point in the history
  • Loading branch information
bittner committed Nov 19, 2023
1 parent bd3cc10 commit dfc4346
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
with:
python-version: '3.10'
- name: Install build tools
run: |
python -m pip install tox wheel
run: pip install tox
- name: Run ${{ matrix.env }}
run: tox run -e ${{ matrix.env }}
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
python-version: '3.10'
- name: Install build tools
run: python -m pip install tox wheel
run: pip install tox
- name: Verify package version is same as Git tag
run: tox run -qe ensure_version_matches -- $GIT_TAG
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install build tools
run: python -m pip install tox wheel
run: pip install tox
- name: Run tests
run: tox run -e py
- name: Upload coverage report
Expand Down

0 comments on commit dfc4346

Please sign in to comment.