mirror of https://github.com/kbandla/dpkt.git
still dorking with tox and travis
This commit is contained in:
parent
9f6d85e40e
commit
11f72ecf3a
|
@ -4,8 +4,8 @@ env:
|
|||
global:
|
||||
LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
|
||||
matrix:
|
||||
- TOXENV=2.6,coveralls
|
||||
- TOXENV=2.7,coveralls
|
||||
- TOXENV=py26,coveralls
|
||||
- TOXENV=py27,coveralls
|
||||
- TOXENV=pypy,coveralls
|
||||
before_install:
|
||||
- python --version
|
||||
|
|
13
tox.ini
13
tox.ini
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = 2.6, 2.7
|
||||
envlist = py26, py27
|
||||
|
||||
[testenv]
|
||||
install_command =
|
||||
|
@ -18,7 +18,16 @@ deps =
|
|||
flake8
|
||||
commands =
|
||||
python setup.py flake8
|
||||
|
||||
|
||||
[testenv:coveralls]
|
||||
deps =
|
||||
coveralls
|
||||
usedevelop = true
|
||||
commands =
|
||||
coverage combine
|
||||
coverage report
|
||||
coveralls
|
||||
|
||||
[testenv:docs]
|
||||
changedir=docs/
|
||||
deps =
|
||||
|
|
Loading…
Reference in New Issue