Skip to content

Commit

Permalink
Reverting "tox" usage on Travis
Browse files Browse the repository at this point in the history
For some reason Travis does not work properly with tox while running TravisPy tests. I think it is related to concurrency issues (since tests for each Python version work with the same Travis job).
  • Loading branch information
menegazzo committed Jan 30, 2017
1 parent 9c4619d commit 66d58e3
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .travis.yml
@@ -1,9 +1,16 @@
sudo: false
language: python
python: 3.5
python:
- 2.7
- 3.4
- 3.5
- pypy
install:
- pip install coveralls tox
- pip install pytest
- pip install pytest-rerunfailures
- pip install requests
- pip install coveralls
script:
- tox
- coverage run --source=travispy setup.py test -a -rxs
after_success:
- coveralls

0 comments on commit 66d58e3

Please sign in to comment.