Files
cibuildwheel/azure-pipelines.yml
T

43 lines
1.1 KiB
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_311
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.11'
2019-03-10 22:50:07 +00:00
- bash: |
docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
2024-11-19 13:30:06 -05:00
python -m pip install dependency-groups
python -m dependency_groups test | xargs python -m pip install -e.
2019-03-10 22:50:07 +00:00
python ./bin/run_tests.py
- job: macos_311
pool: {vmImage: 'macOS-13'}
steps:
2019-03-10 22:50:07 +00:00
- task: UsePythonVersion@0
2019-11-09 11:19:02 +01:00
inputs:
versionSpec: '3.11'
2019-03-10 22:50:07 +00:00
- bash: |
2024-11-19 13:30:06 -05:00
python -m pip install dependency-groups
python -m dependency_groups test | xargs python -m pip install -e.
2024-02-29 22:27:09 +01:00
python ./bin/run_tests.py --num-processes 2
2019-03-10 22:50:07 +00:00
- job: windows_311
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.11'
2019-03-10 22:50:07 +00:00
- bash: |
2024-11-19 13:30:06 -05:00
python -m pip install dependency-groups
python -m dependency_groups test | xargs python -m pip install -e.
2019-03-10 22:50:07 +00:00
python ./bin/run_tests.py