Skip to content

Commit

Permalink
Try to avoid shell in the first place
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed Oct 31, 2024
1 parent 9ed4386 commit df5a2b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ jobs:

- name: Run tests
env:
PYTHON: ${{ matrix.python-version }}
PYTHON: ${{ format('py{0}', format(matrix.python-version, '', '.')) }}
run: >
uvx --with tox-uv tox run
--installpkg dist/*.whl
-f py$(echo $PYTHON | tr -d .)-tests
-f $PYTHON-tests
- name: Upload coverage data
uses: actions/upload-artifact@v4
Expand All @@ -83,7 +83,7 @@ jobs:
run: >
uvx --with tox-uv tox run
--installpkg dist/*.whl
-e py$(echo $PYTHON | tr -d .)-mypy
-e $PYTHON-mypy
coverage:
name: Ensure 100% test coverage
Expand Down

0 comments on commit df5a2b5

Please sign in to comment.