File tree 2 files changed +16
-1
lines changed
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 27
27
run : |
28
28
python -m pip install --upgrade pip
29
29
pip install tox tox-gh-actions pytest-github-actions-annotate-failures
30
- - name : Test with tox
30
+ - name : Test with tox using minimal dependencies
31
31
run : tox
32
32
env :
33
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
+ run : tox
42
+ env :
43
+ PLATFORM : ${{ matrix.platform }}
44
+ WHICH : alldeps
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ PLATFORM =
15
15
ubuntu-latest: linux
16
16
macos-latest: macos
17
17
windows-latest: windows
18
+ WHICH =
19
+ mindeps: mindeps
20
+ alldeps: alldeps
21
+ clean: clean
18
22
19
23
[pytest]
20
24
testpaths = adaptive
You can’t perform that action at this time.
0 commit comments