File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,41 +13,41 @@ jobs:
1313 UbuntuPython36 :
1414 python.version : ' 3.6'
1515 vmImage : ' ubuntu-16.04'
16- tox_env : ' 36 '
16+ tox_env : ' py36 '
1717 UbuntuPython37 :
1818 python.version : ' 3.7'
1919 vmImage : ' ubuntu-16.04'
20- tox_env : ' 37 '
20+ tox_env : ' py37 '
2121 UbuntuPython38 :
2222 python.version : ' 3.8'
2323 vmImage : ' ubuntu-16.04'
24- tox_env : ' 38 '
24+ tox_env : ' py38 '
2525
2626 macOSPython36 :
2727 python.version : ' 3.6'
2828 vmImage : ' macOS-10.13'
29- tox_env : ' 36 '
29+ tox_env : ' py36 '
3030 macOSPython37 :
3131 python.version : ' 3.7'
3232 vmImage : ' macOS-10.13'
33- tox_env : ' 37 '
33+ tox_env : ' py37 '
3434 macOSPython38 :
3535 python.version : ' 3.8'
3636 vmImage : ' macOS-10.13'
37- tox_env : ' 38 '
37+ tox_env : ' py38 '
3838
3939 WindowsPython36 :
4040 python.version : ' 3.6'
4141 vmImage : ' vs2017-win2016'
42- tox_env : ' 36 '
42+ tox_env : ' py36 '
4343 WindowsPython37 :
4444 python.version : ' 3.7'
4545 vmImage : ' vs2017-win2016'
46- tox_env : ' 37 '
46+ tox_env : ' py37 '
4747 WindowsPython38 :
4848 python.version : ' 3.8'
4949 vmImage : ' vs2017-win2016'
50- tox_env : ' 38 '
50+ tox_env : ' py38 '
5151 pool :
5252 vmImage : ' $(vmImage)'
5353 steps :
@@ -56,11 +56,11 @@ jobs:
5656 versionSpec : ' $(python.version)'
5757 - script : pip install tox
5858 displayName : Install tox
59- - script : tox -e bare $(tox_env)
60- displayName : Run the bare tests
59+ - script : tox -e $(tox_env)-mindeps
60+ displayName : Run the tests with minimal dependencies
6161 - script : tox -e clean
6262 displayName : Clean
63- - script : tox -e py $(tox_env)
63+ - script : tox -e $(tox_env)-alldeps
6464 displayName : Run the tests
6565
6666- job : coverage
You can’t perform that action at this time.
0 commit comments