From e125d9cd7c7905401db5194fda59b50c785f8649 Mon Sep 17 00:00:00 2001 From: enkore Date: Sat, 11 Oct 2014 12:35:54 +0200 Subject: [PATCH] Update CI configuration: test install and test building docs. --- .travis.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5a84ffb..7e1de84 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,10 @@ language: python python: - "3.3" -install: "pip install -r requirements.txt" -script: "PYTHONPATH=. py.test" +install: + - "pip install -r requirements.txt" + - "pip install sphinx" # for test-building docs +script: + - "PYTHONPATH=. py.test" # run unit tests + - "python setup.py install" # test install + - "sphinx-build docs html" # test building docs