-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-enable tox-uv (should work now with hatch)
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
[[ "${{ matrix.os }}" = "ubuntu-latest" ]] && sudo apt-get install -y libcap-dev || true | ||
shell: bash | ||
- name: install tox | ||
run: python3 -m pip install tox | ||
run: python3 -m pip install tox tox-uv | ||
- name: run tox | ||
run: tox -e 'py${{ matrix.python_version }}' | ||
- name: submit code coverage | ||
|
@@ -56,7 +56,7 @@ jobs: | |
cache: 'pip' | ||
- run: sudo apt-get install -y pandoc libcap-dev | ||
- name: install tox | ||
run: python3 -m pip install tox | ||
run: python3 -m pip install tox tox-uv | ||
- name: 'run tox for environment ${{ matrix.envs }}' | ||
run: tox -e '${{ matrix.envs }}' | ||
- name: submit code coverage | ||
|
@@ -75,7 +75,7 @@ jobs: | |
cache: 'pip' | ||
- run: sudo apt-get install -y pandoc | ||
- name: install tox | ||
run: python3 -m pip install tox | ||
run: python3 -m pip install tox tox-uv | ||
- name: 'run tox for docs-build-ci' | ||
run: tox -e 'docs-build-ci' | ||
- uses: actions/[email protected] | ||
|