Use 'pypy' as executable on PyPy env [skip travis]
This commit is contained in:
parent
bc6450773a
commit
2bd97ebaf7
|
@ -5,6 +5,7 @@ trigger:
|
||||||
variables:
|
variables:
|
||||||
PYTEST_ADDOPTS: "--junitxml=build/test-results/$(tox.env).xml -vv"
|
PYTEST_ADDOPTS: "--junitxml=build/test-results/$(tox.env).xml -vv"
|
||||||
python.needs_vc: False
|
python.needs_vc: False
|
||||||
|
python.exe: "python"
|
||||||
COVERAGE_FILE: "$(Build.Repository.LocalPath)/.coverage"
|
COVERAGE_FILE: "$(Build.Repository.LocalPath)/.coverage"
|
||||||
COVERAGE_PROCESS_START: "$(Build.Repository.LocalPath)/.coveragerc"
|
COVERAGE_PROCESS_START: "$(Build.Repository.LocalPath)/.coveragerc"
|
||||||
PYTEST_COVERAGE: '0'
|
PYTEST_COVERAGE: '0'
|
||||||
|
@ -44,10 +45,12 @@ jobs:
|
||||||
pypy:
|
pypy:
|
||||||
python.version: 'pypy2'
|
python.version: 'pypy2'
|
||||||
tox.env: 'pypy'
|
tox.env: 'pypy'
|
||||||
# NOTE: pypy3 fails to install pip currently due to an interal error.
|
python.exe: 'pypy'
|
||||||
|
# NOTE: pypy3 fails to install pip currently due to an internal error.
|
||||||
# pypy3:
|
# pypy3:
|
||||||
# python.version: 'pypy3'
|
# python.version: 'pypy3'
|
||||||
# tox.env: 'pypy3'
|
# tox.env: 'pypy3'
|
||||||
|
# python.exe: 'pypy3'
|
||||||
py34-xdist:
|
py34-xdist:
|
||||||
python.version: '3.4'
|
python.version: '3.4'
|
||||||
tox.env: 'py34-xdist'
|
tox.env: 'py34-xdist'
|
||||||
|
@ -91,12 +94,12 @@ jobs:
|
||||||
condition: eq(variables['python.needs_vc'], True)
|
condition: eq(variables['python.needs_vc'], True)
|
||||||
displayName: 'Install VC for py27'
|
displayName: 'Install VC for py27'
|
||||||
|
|
||||||
- script: python -m pip install --upgrade pip && python -m pip install tox
|
- script: $(python.exe) -m pip install --upgrade pip && $(python.exe) -m pip install tox
|
||||||
displayName: 'Install tox'
|
displayName: 'Install tox'
|
||||||
|
|
||||||
- script: |
|
- script: |
|
||||||
call scripts/setup-coverage-vars.bat || goto :eof
|
call scripts/setup-coverage-vars.bat || goto :eof
|
||||||
python -m tox -e $(tox.env)
|
$(python.exe) -m tox -e $(tox.env)
|
||||||
displayName: 'Run tests'
|
displayName: 'Run tests'
|
||||||
|
|
||||||
- task: PublishTestResults@2
|
- task: PublishTestResults@2
|
||||||
|
@ -109,6 +112,6 @@ jobs:
|
||||||
displayName: 'Report and upload coverage'
|
displayName: 'Report and upload coverage'
|
||||||
condition: eq(variables['PYTEST_COVERAGE'], '1')
|
condition: eq(variables['PYTEST_COVERAGE'], '1')
|
||||||
env:
|
env:
|
||||||
PYTHON: python
|
PYTHON: $(python.exe)
|
||||||
CODECOV_TOKEN: $(CODECOV_TOKEN)
|
CODECOV_TOKEN: $(CODECOV_TOKEN)
|
||||||
PYTEST_CODECOV_NAME: $(tox.env)
|
PYTEST_CODECOV_NAME: $(tox.env)
|
||||||
|
|
Loading…
Reference in New Issue