Skip to content

Commit 2472eae

Browse files
committed
rename jobs
1 parent 1a0f824 commit 2472eae

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/tox.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,18 @@ jobs:
2727
run: |
2828
python -m pip install --upgrade pip
2929
pip install tox tox-gh-actions pytest-github-actions-annotate-failures
30-
- name: Test with tox
30+
- name: Test with tox using minimal dependencies
3131
run: tox
3232
env:
3333
PLATFORM: ${{ matrix.platform }}
34+
WHICH: mindeps
35+
- name: Clean
36+
run: tox
37+
env:
38+
PLATFORM: ${{ matrix.platform }}
39+
WHICH: clean
40+
- name: Test with tox with all dependencies
41+
run: tox
42+
env:
43+
PLATFORM: ${{ matrix.platform }}
44+
WHICH: alldeps

tox.ini

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ PLATFORM =
1515
ubuntu-latest: linux
1616
macos-latest: macos
1717
windows-latest: windows
18+
WHICH =
19+
mindeps: mindeps
20+
alldeps: alldeps
21+
clean: clean
1822

1923
[pytest]
2024
testpaths = adaptive

0 commit comments

Comments
 (0)