From c3f1f27186e28a2a02d1def2fb8f791fc76bbc24 Mon Sep 17 00:00:00 2001 From: enkore Date: Fri, 17 Oct 2014 13:01:04 +0200 Subject: [PATCH] Aha, now that's interesting. The isolated venv was then probably the reason why pip didn't see python3-sphinx in https://travis-ci.org/enkore/i3pystatus/builds/38247577 --- .travis.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index f514196..e6194f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,14 @@ language: python python: - "3.3" -install: +virtualenv: + system_site_packages: true +before_install: - "sudo apt-get install -qq python3-sphinx" - - "pip3 install -r .travis-requirements.txt" +install: + - "pip3 install -r dev-requirements.txt" script: - "pep8 --ignore E501 i3pystatus tests" - - "PYTHONPATH=. py.test" # run unit tests - - "python setup.py -q install" # test install - - "sphinx-build -W docs html" # test building docs + - "PYTHONPATH=. py.test" # run unit tests + - "python setup.py -q install" # test install + - "sphinx-build -W docs html" # test building docs