mirror of https://github.com/kbandla/dpkt.git
adding a travis.yml file
This commit is contained in:
parent
5fd5d62576
commit
877c267208
|
@ -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
|
||||
|
Loading…
Reference in New Issue