Skip to content

Commit 6367c90

Browse files
committed
Rename job names with python-style naming
1 parent b058df7 commit 6367c90

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

azure-pipelines.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
jobs:
22
-
3-
job: Code style check
3+
job: code_style_check
44
pool:
55
vmImage: ubuntu-16.04
66
steps:
@@ -15,54 +15,54 @@ jobs:
1515
python -m flake8
1616
displayName: "Code style check"
1717
-
18-
job: Test
18+
job: test
1919
strategy:
2020
matrix:
21-
LinuxPython27:
21+
linux_python_2_7:
2222
python.version: "2.7"
2323
imageName: ubuntu-16.04
2424
sendCoverage: "false"
25-
LinuxPython35:
25+
linux_python_3_5:
2626
python.version: "3.5"
2727
imageName: ubuntu-16.04
2828
sendCoverage: "false"
29-
LinuxPython36:
29+
linux_python_3_6:
3030
python.version: "3.6"
3131
imageName: ubuntu-16.04
3232
sendCoverage: "false"
33-
LinuxPython37:
33+
linux_python_3_7:
3434
python.version: "3.7"
3535
imageName: ubuntu-16.04
3636
sendCoverage: "true"
37-
MacPython27:
37+
mac_python_2_7:
3838
python.version: "2.7"
3939
imageName: macos-10.13
4040
sendCoverage: "false"
41-
MacPython35:
41+
mac_python_3_5:
4242
python.version: "3.5"
4343
imageName: macos-10.13
4444
sendCoverage: "false"
45-
MacPython36:
45+
mac_python_3_6:
4646
python.version: "3.6"
4747
imageName: macos-10.13
4848
sendCoverage: "false"
49-
MacPython37:
49+
mac_python_3_7:
5050
python.version: "3.7"
5151
imageName: macos-10.13
5252
sendCoverage: "false"
53-
WindowsPython27:
53+
windows_python_2_7:
5454
python.version: "2.7"
5555
imageName: vs2017-win2016
5656
sendCoverage: "false"
57-
WindowsPython35:
57+
windows_python_3_5:
5858
python.version: "3.5"
5959
imageName: vs2017-win2016
6060
sendCoverage: "false"
61-
WindowsPython36:
61+
windows_python_3_6:
6262
python.version: "3.6"
6363
imageName: vs2017-win2016
6464
sendCoverage: "false"
65-
WindowsPython37:
65+
windows_python_3_7:
6666
python.version: "3.7"
6767
imageName: vs2017-win2016
6868
sendCoverage: "false"

0 commit comments

Comments
 (0)