File tree Expand file tree Collapse file tree 1 file changed +23
-9
lines changed Expand file tree Collapse file tree 1 file changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -10,44 +10,58 @@ jobs:
10
10
strategy :
11
11
# use cross-product when https://github.com/microsoft/azure-pipelines-yaml/issues/20 is solved
12
12
matrix :
13
- UbuntuPython36 :
13
+ UbuntuPy36 :
14
14
python.version : ' 3.6'
15
15
vmImage : ' ubuntu-16.04'
16
16
tox_env : ' py36'
17
- UbuntuPython37 :
17
+ UbuntuPy37 :
18
18
python.version : ' 3.7'
19
19
vmImage : ' ubuntu-16.04'
20
20
tox_env : ' py37'
21
- UbuntuPython38 :
21
+ UbuntuPy38 :
22
22
python.version : ' 3.8'
23
23
vmImage : ' ubuntu-16.04'
24
24
tox_env : ' py38'
25
25
26
- macOSPython36 :
26
+ macOSPy36 :
27
27
python.version : ' 3.6'
28
28
vmImage : ' macOS-10.13'
29
29
tox_env : ' py36'
30
- macOSPython37 :
30
+ macOSPy37 :
31
31
python.version : ' 3.7'
32
32
vmImage : ' macOS-10.13'
33
33
tox_env : ' py37'
34
- macOSPython38 :
34
+ macOSPy38 :
35
35
python.version : ' 3.8'
36
36
vmImage : ' macOS-10.13'
37
37
tox_env : ' py38'
38
38
39
- WindowsPython36 :
39
+ WindowsServerPy36 :
40
40
python.version : ' 3.6'
41
41
vmImage : ' vs2017-win2016'
42
42
tox_env : ' py36'
43
- WindowsPython37 :
43
+ WindowsServerPy37 :
44
44
python.version : ' 3.7'
45
45
vmImage : ' vs2017-win2016'
46
46
tox_env : ' py37'
47
- WindowsPython38 :
47
+ WindowsServerPy38 :
48
48
python.version : ' 3.8'
49
49
vmImage : ' vs2017-win2016'
50
50
tox_env : ' py38'
51
+
52
+ WindowsPy36 :
53
+ python.version : ' 3.6'
54
+ vmImage : ' windows-latest'
55
+ tox_env : ' py36'
56
+ WindowsPy37 :
57
+ python.version : ' 3.7'
58
+ vmImage : ' windows-latest'
59
+ tox_env : ' py37'
60
+ WindowsPy38 :
61
+ python.version : ' 3.8'
62
+ vmImage : ' windows-latest'
63
+ tox_env : ' py38'
64
+
51
65
pool :
52
66
vmImage : ' $(vmImage)'
53
67
steps :
You can’t perform that action at this time.
0 commit comments