Another try

This commit is contained in:
Hadrien Mary 2015-06-19 00:02:13 +02:00
parent 3c9eee0112
commit 0004842600
2 changed files with 6 additions and 5 deletions

View File

@ -11,7 +11,7 @@ env:
- TOXENV=pypy3
- TOXENV=flake8
install:
- pip install tox python-coveralls
- pip install tox coveralls
script:
- tox
after_success:

View File

@ -7,13 +7,14 @@
envlist = py26, py27, py32, py33, py34, pypy, pypy3, flake8
[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
deps =
nose
coverage
python-coveralls
commands = nosetests --with-coverage --cover-package=tqdm -v tqdm/
after_success:
- coveralls
coveralls
commands =
nosetests --with-coverage --cover-package=tqdm -v tqdm/
coveralls
[testenv:flake8]
basepython = python2.7