Merge pull request #1350 from pytest-dev/appveyor-pypy

Test with pypy and enable coveralls in AppVeyor
This commit is contained in:
Bruno Oliveira 2016-02-01 19:31:48 -02:00
commit b5dc7d9be1
3 changed files with 32 additions and 23 deletions

View File

@ -7,25 +7,25 @@ install: "pip install -U tox"
# # command to run tests # # command to run tests
env: env:
matrix: matrix:
# coveralls is not listed in tox's envlist, but should run in travis
- TESTENV=coveralls - TESTENV=coveralls
- TESTENV=doctesting # note: please use "tox --listenvs" to populate the build matrix below
- TESTENV=flakes - TESTENV=flakes
- TESTENV=py26 - TESTENV=py26
- TESTENV=py27 - TESTENV=py27
- TESTENV=py27-cxfreeze
- TESTENV=py27-nobyte
- TESTENV=py27-pexpect
- TESTENV=py27-subprocess
- TESTENV=py27-trial
- TESTENV=py27-xdist
- TESTENV=py33
- TESTENV=py33 - TESTENV=py33
- TESTENV=py34 - TESTENV=py34
- TESTENV=py35-pexpect
- TESTENV=py35-trial
- TESTENV=py35-xdist
- TESTENV=py35 - TESTENV=py35
- TESTENV=pypy - TESTENV=pypy
- TESTENV=py27-pexpect
- TESTENV=py27-xdist
- TESTENV=py27-trial
- TESTENV=py35-pexpect
- TESTENV=py35-xdist
- TESTENV=py35-trial
- TESTENV=py27-nobyte
- TESTENV=doctesting
- TESTENV=py27-cxfreeze
script: tox --recreate -e $TESTENV script: tox --recreate -e $TESTENV

View File

@ -1,19 +1,28 @@
environment:
COVERALLS_REPO_TOKEN:
secure: 2NJ5Ct55cHJ9WEg3xbSqCuv0rdgzzb6pnzOIG5OkMbTndw3wOBrXntWFoQrXiMFi
# this is pytest's token in coveralls.io, encrypted
# using pytestbot account as detailed here:
# https://www.appveyor.com/docs/build-configuration#secure-variables
install: install:
- echo Installed Pythons - echo Installed Pythons
- dir c:\Python* - dir c:\Python*
# install pypy using choco (redirect to a file and write to console in case
# choco install returns non-zero, because choco install python.pypy is too
# noisy)
- choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
- set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy
- echo PyPy installed
- pypy --version
- C:\Python35\python -m pip install tox - C:\Python35\python -m pip install tox
build: false # Not a C# project, build stuff at the test step instead. build: false # Not a C# project, build stuff at the test step instead.
test_script: test_script:
- 'set TESTENVS= - C:\Python35\python -m tox
flakes, # coveralls is not in tox's envlist, plus for PRs the secure variable
py26, # is not defined so we have to check for it
py27, - if defined COVERALLS_REPO_TOKEN C:\Python35\python -m tox -e coveralls
py33,
py34,
py27-xdist,
py35-xdist
'
- C:\Python35\python -m tox -e "%TESTENVS%"

View File

@ -131,7 +131,7 @@ commands=
[testenv:coveralls] [testenv:coveralls]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH COVERALLS_REPO_TOKEN
usedevelop=True usedevelop=True
basepython=python3.4 basepython=python3.4
changedir=. changedir=.
@ -139,7 +139,7 @@ deps =
{[testenv]deps} {[testenv]deps}
coveralls coveralls
commands= commands=
coverage run --source=_pytest {envdir}/bin/py.test testing coverage run --source=_pytest -m pytest testing
coverage report -m coverage report -m
coveralls coveralls