Files
cibuildwheel/azure-pipelines.yml
T

39 lines
791 B
YAML
Raw Normal View History

2023-07-09 15:59:27 +01:00
pr:
paths:
exclude:
- docs/*
- .pre-commit-config.yaml
2023-07-09 15:59:27 +01:00
2019-03-10 22:50:07 +00:00
jobs:
- job: linux_38
2021-09-20 08:57:14 +01:00
timeoutInMinutes: 120
pool: {vmImage: 'Ubuntu-20.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: |
2022-08-08 22:21:22 +01:00
python -m pip install -e ".[dev]"
2019-03-10 22:50:07 +00:00
python ./bin/run_tests.py
- job: macos_38
2022-07-17 14:31:45 -04:00
pool: {vmImage: 'macOS-11'}
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: |
2022-08-08 22:21:22 +01:00
python -m pip install -e ".[dev]"
2019-03-10 22:50:07 +00:00
python ./bin/run_tests.py
- job: windows_38
2022-02-22 14:26:51 -08:00
pool: {vmImage: 'windows-2019'}
timeoutInMinutes: 180
steps:
- task: UsePythonVersion@0
2019-11-09 11:19:02 +01:00
inputs:
versionSpec: '3.8'
2019-03-10 22:50:07 +00:00
- bash: |
2022-08-08 22:21:22 +01:00
python -m pip install -e ".[dev]"
2019-03-10 22:50:07 +00:00
python ./bin/run_tests.py