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