mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 14:14:19 +00:00
Add fast_finish to travis.yml
This commit is contained in:
parent
2a680a18d5
commit
f17b398f6a
2 changed files with 14 additions and 4 deletions
17
.travis.yml
17
.travis.yml
|
@ -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
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#---------------------------------------------------------
|
||||
# PlexAPI Requirements
|
||||
# pip install -r requirments.txt
|
||||
#---------------------------------------------------------
|
||||
requests
|
||||
|
|
Loading…
Reference in a new issue