2019-02-13 05:01:30 +08:00
|
|
|
trigger:
|
|
|
|
- master
|
|
|
|
- features
|
|
|
|
|
2019-02-13 06:24:32 +08:00
|
|
|
variables:
|
2019-02-28 01:31:40 +08:00
|
|
|
PYTEST_ADDOPTS: "--junitxml=build/test-results/$(tox.env).xml -vv"
|
2019-02-27 06:22:23 +08:00
|
|
|
PYTEST_COVERAGE: '0'
|
2019-02-13 06:24:32 +08:00
|
|
|
|
2019-02-13 05:01:30 +08:00
|
|
|
jobs:
|
|
|
|
|
|
|
|
- job: 'Test'
|
|
|
|
pool:
|
|
|
|
vmImage: "vs2017-win2016"
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-05-28 07:31:52 +08:00
|
|
|
# -- pypy3 disabled for now: #5279 --
|
2019-05-16 23:18:30 +08:00
|
|
|
# pypy3:
|
|
|
|
# python.version: 'pypy3'
|
|
|
|
# tox.env: 'pypy3'
|
2019-03-01 21:55:09 +08:00
|
|
|
py35-xdist:
|
2019-02-13 05:01:30 +08:00
|
|
|
python.version: '3.5'
|
2019-03-01 21:55:09 +08:00
|
|
|
tox.env: 'py35-xdist'
|
|
|
|
# Coverage for:
|
|
|
|
# - test_supports_breakpoint_module_global
|
2019-02-27 06:22:23 +08:00
|
|
|
PYTEST_COVERAGE: '1'
|
2019-03-01 21:55:09 +08:00
|
|
|
py36-xdist:
|
2019-02-13 05:01:30 +08:00
|
|
|
python.version: '3.6'
|
2019-03-01 21:55:09 +08:00
|
|
|
tox.env: 'py36-xdist'
|
2019-02-13 05:01:30 +08:00
|
|
|
py37:
|
|
|
|
python.version: '3.7'
|
2019-06-05 13:24:50 +08:00
|
|
|
tox.env: 'py37-twisted-numpy'
|
2019-03-01 21:55:09 +08:00
|
|
|
# Coverage for:
|
|
|
|
# - _py36_windowsconsoleio_workaround (with py36+)
|
|
|
|
# - test_request_garbage (no xdist)
|
2019-02-27 06:22:23 +08:00
|
|
|
PYTEST_COVERAGE: '1'
|
2019-02-14 04:59:36 +08:00
|
|
|
py37-linting/docs/doctesting:
|
|
|
|
python.version: '3.7'
|
|
|
|
tox.env: 'linting,docs,doctesting'
|
2019-02-26 21:03:15 +08:00
|
|
|
py37-pluggymaster-xdist:
|
2019-02-14 04:59:36 +08:00
|
|
|
python.version: '3.7'
|
2019-02-26 21:03:15 +08:00
|
|
|
tox.env: 'py37-pluggymaster-xdist'
|
2019-02-14 04:59:36 +08:00
|
|
|
maxParallel: 10
|
2019-02-13 05:01:30 +08:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- task: UsePythonVersion@0
|
|
|
|
inputs:
|
|
|
|
versionSpec: '$(python.version)'
|
|
|
|
architecture: 'x64'
|
|
|
|
|
2019-05-16 19:07:59 +08:00
|
|
|
- script: python -m pip install --upgrade pip && python -m pip install tox
|
2019-02-13 05:01:30 +08:00
|
|
|
displayName: 'Install tox'
|
|
|
|
|
2019-06-05 09:47:36 +08:00
|
|
|
- bash: |
|
|
|
|
if [[ "$PYTEST_COVERAGE" == "1" ]]; then
|
|
|
|
export _PYTEST_TOX_COVERAGE_RUN="coverage run -m"
|
|
|
|
export _PYTEST_TOX_EXTRA_DEP=coverage-enable-subprocess
|
|
|
|
export COVERAGE_FILE="$PWD/.coverage"
|
|
|
|
export COVERAGE_PROCESS_START="$PWD/.coveragerc"
|
|
|
|
fi
|
2019-10-22 11:46:10 +08:00
|
|
|
python -m tox -e $(tox.env) -vv
|
2019-02-13 05:01:30 +08:00
|
|
|
displayName: 'Run tests'
|
|
|
|
|
|
|
|
- task: PublishTestResults@2
|
|
|
|
inputs:
|
|
|
|
testResultsFiles: 'build/test-results/$(tox.env).xml'
|
|
|
|
testRunTitle: '$(tox.env)'
|
|
|
|
condition: succeededOrFailed()
|
2019-02-26 07:27:45 +08:00
|
|
|
|
2019-06-05 09:47:36 +08:00
|
|
|
- bash: |
|
|
|
|
if [[ "$PYTEST_COVERAGE" == 1 ]]; then
|
|
|
|
scripts/report-coverage.sh
|
|
|
|
fi
|
2019-02-26 07:27:45 +08:00
|
|
|
env:
|
2019-06-05 09:47:36 +08:00
|
|
|
CODECOV_NAME: $(tox.env)
|
2019-02-26 07:27:45 +08:00
|
|
|
CODECOV_TOKEN: $(CODECOV_TOKEN)
|
2019-06-05 09:47:36 +08:00
|
|
|
displayName: Report and upload coverage
|
|
|
|
condition: eq(variables['PYTEST_COVERAGE'], '1')
|