Skip to content

Commit

Permalink
travis: Don't use tox, invoke py.test directly
Browse files Browse the repository at this point in the history
Also enable pip caching.
  • Loading branch information
abusalimov committed Oct 11, 2015
1 parent 904b138 commit 83eb180
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ python:
- "pypy3"

install:
- pip install tox
- pip install -e .
script:
- "tox -e ${TRAVIS_PYTHON_VERSION/[0-9].[0-9]/py${TRAVIS_PYTHON_VERSION/.}}"
- py.test

cache:
directories:
- $HOME/.cache/pip/http

0 comments on commit 83eb180

Please sign in to comment.