Skip to content

Commit

Permalink
rename jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
basnijholt committed Mar 5, 2021
1 parent 1a0f824 commit 2472eae
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,18 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions pytest-github-actions-annotate-failures
- name: Test with tox
- name: Test with tox using minimal dependencies
run: tox
env:
PLATFORM: ${{ matrix.platform }}
WHICH: mindeps
- name: Clean
run: tox
env:
PLATFORM: ${{ matrix.platform }}
WHICH: clean
- name: Test with tox with all dependencies
run: tox
env:
PLATFORM: ${{ matrix.platform }}
WHICH: alldeps
4 changes: 4 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ PLATFORM =
ubuntu-latest: linux
macos-latest: macos
windows-latest: windows
WHICH =
mindeps: mindeps
alldeps: alldeps
clean: clean

[pytest]
testpaths = adaptive
Expand Down

0 comments on commit 2472eae

Please sign in to comment.