adding a travis.yml file

This commit is contained in:
Brian Wylie 2014-12-29 14:07:56 -07:00
parent 5fd5d62576
commit 877c267208
1 changed files with 28 additions and 0 deletions

28
.travis.yml Normal file
View File

@ -0,0 +1,28 @@
language: python
python: 2.7
env:
global:
LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
matrix:
- TOXENV=check
- TOXENV=2.6,coveralls
- TOXENV=2.6-nocover
- TOXENV=2.7,coveralls
- TOXENV=2.7-nocover
- TOXENV=pypy,coveralls
- TOXENV=pypy-nocover
before_install:
- python --version
- virtualenv --version
- pip --version
- uname -a
- lsb_release -a
install:
- pip install tox
script:
- tox -v
notifications:
email:
on_success: never
on_failure: always