Update CI configuration: test install and test building docs.

This commit is contained in:
enkore 2014-10-11 12:35:54 +02:00
parent a6fb92936d
commit e125d9cd7c

View File

@ -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