Make CI builds less noisy

This commit is contained in:
enkore 2014-10-17 12:56:46 +02:00
parent 5c9e7ec502
commit 8a4d43c86d

View File

@ -2,10 +2,10 @@ language: python
python: python:
- "3.3" - "3.3"
install: install:
- "sudo apt-get install python3-sphinx" - "sudo apt-get install -qq python3-sphinx"
- "pip install -r .travis-requirements.txt" - "pip3 install -r .travis-requirements.txt"
script: script:
- "pep8 --ignore E501 i3pystatus tests" - "pep8 --ignore E501 i3pystatus tests"
- "PYTHONPATH=. py.test" # run unit tests - "PYTHONPATH=. py.test" # run unit tests
- "python setup.py install" # test install - "python setup.py -q install" # test install
- "sphinx-build -W docs html" # test building docs - "sphinx-build -W docs html" # test building docs