We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a0f824 commit 2472eaeCopy full SHA for 2472eae
2 files changed
.github/workflows/tox.yml
@@ -27,7 +27,18 @@ jobs:
27
run: |
28
python -m pip install --upgrade pip
29
pip install tox tox-gh-actions pytest-github-actions-annotate-failures
30
- - name: Test with tox
+ - name: Test with tox using minimal dependencies
31
run: tox
32
env:
33
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
42
43
44
+ WHICH: alldeps
tox.ini
@@ -15,6 +15,10 @@ PLATFORM =
15
ubuntu-latest: linux
16
macos-latest: macos
17
windows-latest: windows
18
+WHICH =
19
+ mindeps: mindeps
20
+ alldeps: alldeps
21
+ clean: clean
22
23
[pytest]
24
testpaths = adaptive
0 commit comments