Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 872bae2

Browse files
zoobaanntzer
authored andcommitted
Fix job names and remove extension reference
1 parent cbcf616 commit 872bae2

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
jobs:
77

8-
- job: 'Linux tests'
8+
- job: 'Linux_Test'
99
pool:
1010
vmImage: ubuntu-16.04
1111
strategy:
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- template: ci/azure-pipelines-steps.yml
2121

22-
- job: 'Windows tests'
22+
- job: 'Windows_Test'
2323
pool:
2424
vmImage: vs2017-win2016
2525
strategy:
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- template: ci/azure-pipelines-steps.yml
3838

39-
- job: 'macOS tests'
39+
- job: 'macOS_Test'
4040
pool:
4141
vmImage: xcode9-macos10.13
4242
strategy:

ci/azure-pipelines-steps.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ steps:
66
displayName: 'Use Python $(python.version)'
77
condition: and(succeeded(), ne(variables['python.version'], 'Pre'))
88

9-
- task: stevedower.python.InstallPython.InstallPython@1
10-
displayName: 'Use prerelease Python'
11-
inputs:
12-
prerelease: true
13-
condition: and(succeeded(), eq(variables['python.version'], 'Pre'))
9+
# Disabled until extension is added
10+
#- task: stevedower.python.InstallPython.InstallPython@1
11+
# displayName: 'Use prerelease Python'
12+
# inputs:
13+
# prerelease: true
14+
# condition: and(succeeded(), eq(variables['python.version'], 'Pre'))
1415

1516
- script: |
1617

0 commit comments

Comments
 (0)