Skip to content

Commit f83511e

Browse files
committed
update Azure config to use new tox environments
1 parent b25eecf commit f83511e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

azure-pipelines.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)