Show verbose logs for building docs

This commit is contained in:
Michael Shepanski 2017-04-29 02:31:45 -04:00
parent 6bb18843d7
commit 741f74575b

View file

@ -20,6 +20,7 @@ install:
- pip install -r requirements_doc.txt
script:
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then py.test tests --tb=native --verbose -sk test_build_documentation; fi
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then py.test tests --tb=native --verbose --cov-config .coveragerc --cov=plexapi; fi
- flake8 plexapi --exclude=compat.py --max-line-length=120 --ignore=E128,E701,E702,E731,W293