test_ok2/.travis.yml

41 lines
908 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:
2015-09-14 21:36:20 +08:00
- '3.5'
# 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:
# coveralls is not listed in tox's envlist, but should run in travis
2015-07-19 21:25:04 +08:00
- TESTENV=coveralls
# note: please use "tox --listenvs" to populate the build matrix below
- TESTENV=linting
2015-06-16 06:40:49 +08:00
- 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-07-19 21:25:04 +08:00
- TESTENV=py35
- 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
2015-08-18 20:14:17 +08:00
script: tox --recreate -e $TESTENV
notifications:
irc:
channels:
- "chat.freenode.net#pytest"
on_success: change
on_failure: change
skip_join: true
email:
- pytest-commit@python.org