From 83eb180f1980b4dce7aabc5a5d3f5aee587d150a Mon Sep 17 00:00:00 2001 From: Eldar Abusalimov Date: Sun, 11 Oct 2015 15:13:28 +0300 Subject: [PATCH] travis: Don't use tox, invoke py.test directly Also enable pip caching. --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index db80996..d0eb2a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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