Add fast_finish to travis.yml

This commit is contained in:
Michael Shepanski 2017-02-02 09:44:37 -05:00
parent 2a680a18d5
commit f17b398f6a
2 changed files with 14 additions and 4 deletions

View file

@ -1,4 +1,9 @@
language: python
#---------------------------------------------------------
# Travis CI Build Environment
# https://docs.travis-ci.com/user/customizing-the-build
#---------------------------------------------------------
language:
- python
python:
- "2.7"
@ -8,12 +13,16 @@ python:
- "3.6"
before_install:
- pip install -U pytest pytest-cov coveralls
- pip install -U pytest pytest-cov coveralls
install:
- pip install -r requirements_dev.txt
script: py.test tests --cov-config .coveragerc --cov=plexapi --cov-report=html
script:
- py.test tests --cov-config .coveragerc --cov=plexapi --cov-report=html
after_success:
- coveralls
- coveralls
matrix:
fast_finish: true

View file

@ -1,4 +1,5 @@
#---------------------------------------------------------
# PlexAPI Requirements
# pip install -r requirments.txt
#---------------------------------------------------------
requests