Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .azure-pipelines/templates/setup-ci-machine.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
steps:
- script: python -m pip install --upgrade pip
displayName: 'Upgrade pip'
- script: pip install wheel
displayName: 'Install Wheel'
- script: "pip install 'pytest>=7.0.0'"
- script: pip install wheel==0.30.0 setuptools==70.0.0
displayName: 'Install Wheel & Setuptools'
- script: "pip install pytest==6.2.5"
displayName: 'Install pytest'
- script: pip install coverage
displayName: 'Install coverage'
Expand Down
Loading