Files

43 lines
1.0 KiB
YAML
Raw Permalink Normal View History

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