2015-06-16 06:22:16 +08:00
|
|
|
sudo: false
|
2013-07-06 20:23:02 +08:00
|
|
|
language: python
|
2015-06-24 23:34:09 +08:00
|
|
|
python:
|
|
|
|
- 'nightly'
|
2013-07-06 20:23:02 +08:00
|
|
|
# command to install dependencies
|
2015-06-16 06:40:49 +08:00
|
|
|
install: "pip install -U tox"
|
2013-07-06 20:23:02 +08:00
|
|
|
# # 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
|
2015-06-24 00:52:05 +08:00
|
|
|
- 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
|
2015-07-19 01:46:36 +08:00
|
|
|
allow_failures:
|
2015-07-19 01:46:36 +08:00
|
|
|
- TESTENV=py35
|
2015-06-16 06:40:49 +08:00
|
|
|
script: tox --recreate -i ALL=https://devpi.net/hpk/dev/ -e $TESTENV
|
2014-01-23 19:18:20 +08:00
|
|
|
|
2013-07-06 20:23:02 +08:00
|
|
|
notifications:
|
|
|
|
irc:
|
2015-06-19 17:35:58 +08:00
|
|
|
channels:
|
|
|
|
- "chat.freenode.net#pytest"
|
|
|
|
on_success: change
|
|
|
|
on_failure: change
|
|
|
|
skip_join: true
|
2013-07-06 20:23:02 +08:00
|
|
|
email:
|
|
|
|
- pytest-commit@python.org
|