2019-03-10 22:50:07 +00:00
|
|
|
jobs:
|
2020-02-03 15:31:51 +01:00
|
|
|
- job: linux_38
|
2019-10-26 01:09:19 +02:00
|
|
|
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: |
|
2021-01-02 11:33:38 -05:00
|
|
|
python -m pip install -e ".[dev]" pytest-azurepipelines
|
2019-03-10 22:50:07 +00:00
|
|
|
python ./bin/run_tests.py
|
|
|
|
|
|
2020-02-03 15:31:51 +01:00
|
|
|
- job: macos_38
|
2020-02-26 16:47:26 -05:00
|
|
|
pool: {vmImage: 'macOS-10.15'}
|
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: |
|
2021-01-02 11:33:38 -05:00
|
|
|
python -m pip install -e ".[dev]" pytest-azurepipelines
|
2019-03-10 22:50:07 +00:00
|
|
|
python ./bin/run_tests.py
|
|
|
|
|
|
2020-02-03 15:31:51 +01:00
|
|
|
- job: windows_36
|
|
|
|
|
pool: {vmImage: 'vs2017-win2016'}
|
2020-07-21 23:13:55 +02:00
|
|
|
timeoutInMinutes: 180
|
2020-02-03 15:31:51 +01:00
|
|
|
steps:
|
|
|
|
|
- task: UsePythonVersion@0
|
|
|
|
|
inputs:
|
|
|
|
|
versionSpec: '3.6'
|
|
|
|
|
- bash: |
|
2021-01-02 11:33:38 -05:00
|
|
|
python -m pip install -e ".[dev]" pytest-azurepipelines
|
2020-02-03 15:31:51 +01:00
|
|
|
python ./bin/run_tests.py
|
|
|
|
|
|
|
|
|
|
- job: windows_38
|
2019-03-10 22:50:07 +00:00
|
|
|
pool: {vmImage: 'vs2017-win2016'}
|
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: |
|
2021-01-02 11:33:38 -05:00
|
|
|
python -m pip install -e ".[dev]" pytest-azurepipelines
|
2019-03-10 22:50:07 +00:00
|
|
|
python ./bin/run_tests.py
|