test_ok2/.travis.yml

43 lines
927 B
YAML
Raw Normal View History

2015-06-16 06:22:16 +08:00
sudo: false
language: python
2015-06-24 23:34:09 +08:00
python:
- 'nightly'
# command to install dependencies
2015-06-16 06:40:49 +08:00
install: "pip install -U tox"
# # command to run tests
2015-06-16 06:40:49 +08:00
env:
matrix:
- TESTENV=flakes
- TESTENV=py26
- TESTENV=py27
2015-07-16 07:03:14 +08:00
- TESTENV=py33
2015-06-16 06:40:49 +08:00
- TESTENV=py34
- TESTENV=py35
2015-06-16 06:40:49 +08:00
- TESTENV=pypy
- TESTENV=py27-pexpect
2015-07-16 07:03:14 +08:00
- TESTENV=py34-pexpect
2015-06-16 06:40:49 +08:00
- TESTENV=py27-nobyte
- TESTENV=py27-xdist
2015-07-16 07:03:14 +08:00
- TESTENV=py34-xdist
2015-06-16 06:40:49 +08:00
- TESTENV=py27-trial
2015-07-16 07:03:14 +08:00
- TESTENV=py34-trial
2015-06-16 06:40:49 +08:00
- TESTENV=py27-subprocess
- TESTENV=doctesting
- TESTENV=py27-cxfreeze
- TESTENV=coveralls
matrix:
allow_failures:
# py35 is currently broken on travis, see #744
- env: TESTENV=py35
2015-06-16 06:40:49 +08:00
script: tox --recreate -i ALL=https://devpi.net/hpk/dev/ -e $TESTENV
notifications:
irc:
channels:
- "chat.freenode.net#pytest"
on_success: change
on_failure: change
skip_join: true
email:
- pytest-commit@python.org