2023-07-09 15:59:27 +01:00
|
|
|
pr:
|
|
|
|
|
paths:
|
|
|
|
|
exclude:
|
|
|
|
|
- docs/*
|
2023-07-10 11:34:10 +01:00
|
|
|
- .pre-commit-config.yaml
|
2023-07-09 15:59:27 +01:00
|
|
|
|
2019-03-10 22:50:07 +00:00
|
|
|
jobs:
|
2020-02-03 15:31:51 +01:00
|
|
|
- job: linux_38
|
2021-09-20 08:57:14 +01:00
|
|
|
timeoutInMinutes: 120
|
2022-10-07 12:16:50 +01:00
|
|
|
pool: {vmImage: 'Ubuntu-20.04'}
|
2019-10-26 01:09:19 +02:00
|
|
|
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
|
|
|
|
|
|
2020-02-03 15:31:51 +01:00
|
|
|
- job: macos_38
|
2022-07-17 14:31:45 -04:00
|
|
|
pool: {vmImage: 'macOS-11'}
|
2019-10-26 01:09:19 +02:00
|
|
|
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
|
|
|
|
|
|
2020-02-03 15:31:51 +01:00
|
|
|
- job: windows_38
|
2022-02-22 14:26:51 -08:00
|
|
|
pool: {vmImage: 'windows-2019'}
|
2020-07-21 23:13:55 +02:00
|
|
|
timeoutInMinutes: 180
|
2019-10-26 01:09:19 +02:00
|
|
|
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
|