Skip to content

Commit cfab2b4

Browse files
authored
Better CI Job Name (#388)
1 parent a1de54e commit cfab2b4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

azure-pipelines-templates/run-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ parameters:
3333

3434
jobs:
3535
# The job will be named after the OS and Azure will suffix the strategy to make it unique
36-
# so we'll have a job name "Windows Python27" for example. What's a strategy? Strategies are the
37-
# name of the keys under the strategy.matrix scope. So for each OS we'll have "<OS> Python27" and
38-
# "<OS> Python37".
36+
# so we'll have a job name "Windows Python 2.7" for example. What's a strategy? Strategies are the
37+
# name of the keys under the strategy.matrix scope. So for each OS we'll have "<OS> Python 2.7" and
38+
# "<OS> Python 3.7".
3939
- job: ${{ parameters.name }}
4040
pool:
4141
vmImage: ${{ parameters.vm_image }}
@@ -44,11 +44,11 @@ jobs:
4444
strategy:
4545
matrix:
4646
# We support these versions of Python.
47-
Python39:
47+
Python 3.9:
4848
python.version: '3.9'
49-
Python310:
49+
Python 3.10:
5050
python.version: '3.10'
51-
Python311:
51+
Python 3.11:
5252
python.version: '3.11'
5353

5454
maxParallel: 4

0 commit comments

Comments
 (0)