Test errors in Azure are all printing KeyError: 'reason', it seems to be an incompatibility between pytest-azurepipelines and pytest-xdist. I've filed a bug here: https://github.com/Azure/pytest-azurepipelines/issues/71 in the meantime, I'll disable this plugin.
33 lines
717 B
YAML
33 lines
717 B
YAML
jobs:
|
|
- job: linux_38
|
|
timeoutInMinutes: 120
|
|
pool: {vmImage: 'Ubuntu-18.04'}
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: '3.8'
|
|
- bash: |
|
|
python -m pip install -e ".[dev]"
|
|
python ./bin/run_tests.py
|
|
|
|
- job: macos_38
|
|
pool: {vmImage: 'macOS-11'}
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: '3.8'
|
|
- bash: |
|
|
python -m pip install -e ".[dev]"
|
|
python ./bin/run_tests.py
|
|
|
|
- job: windows_38
|
|
pool: {vmImage: 'windows-2019'}
|
|
timeoutInMinutes: 180
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: '3.8'
|
|
- bash: |
|
|
python -m pip install -e ".[dev]"
|
|
python ./bin/run_tests.py
|