i3pystatus/.travis.yml
enkore 828dc08763 Rename requirements.txt to dev-...txt to clarify that these are NOT core dependencies.
(Installing packaged sphinx should speed up CI builds significantly and pip
should figure out it doesn't need to install it.)
2014-10-17 12:23:02 +02:00

12 lines
331 B
YAML

language: python
python:
- "3.3"
install:
- "sudo apt-get install python3-sphinx"
- "pip install -r dev-requirements.txt"
script:
- "pep8 --ignore E501 i3pystatus tests"
- "PYTHONPATH=. py.test" # run unit tests
- "python setup.py install" # test install
- "sphinx-build -W docs html" # test building docs