Skip to content

Commit 7e17a38

Browse files
committed
Update azure-pipelines.yml for Azure Pipelines
1 parent 578b8ab commit 7e17a38

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

azure-pipelines.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@ pool: E5-Agent-Pool
1111
steps:
1212
- task: UsePythonVersion@0
1313
inputs:
14-
versionSpec: '$(python.version)'
15-
displayName: 'Use Python $(python.version)'
14+
versionSpec: '3.8'
1615

1716
- script: |
18-
python -m pip install --upgrade pip
19-
pip install -r requirements.txt
17+
python3 -m pip install --upgrade pip
18+
pip3 install -r requirements.txt
2019
displayName: 'Install dependencies'
2120

2221
- script: |
23-
pip install pytest pytest-azurepipelines
22+
pip3 install pytest pytest-azurepipelines
2423
pytest
2524
displayName: 'pytest'

0 commit comments

Comments
 (0)