Files
cibuildwheel/azure-pipelines.yml
T

34 lines
800 B
YAML
Raw Normal View History

2019-03-10 22:50:07 +00:00
jobs:
- job: linux
pool: {vmImage: 'Ubuntu-18.04'}
steps:
2019-03-10 22:50:07 +00:00
- task: UsePythonVersion@0
2019-11-09 11:19:02 +01:00
inputs:
versionSpec: '3.8'
2019-03-10 22:50:07 +00:00
- bash: |
python -m pip install -r requirements-dev.txt
python ./bin/run_tests.py
- job: macos
pool: {vmImage: 'macOS-10.13'}
steps:
2019-03-10 22:50:07 +00:00
- task: UsePythonVersion@0
2019-11-09 11:19:02 +01:00
inputs:
versionSpec: '3.8'
2019-03-10 22:50:07 +00:00
- bash: |
python -m pip install -r requirements-dev.txt
python ./bin/run_tests.py
- job: windows
pool: {vmImage: 'vs2017-win2016'}
steps:
- task: UsePythonVersion@0
2019-11-09 11:19:02 +01:00
inputs:
versionSpec: '3.8'
2019-03-10 22:50:07 +00:00
- script: choco install vcpython27 -f -y
displayName: Install Visual C++ for Python 2.7
- bash: |
python -m pip install -r requirements-dev.txt
python ./bin/run_tests.py