mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-26 13:40:22 +00:00
19 lines
No EOL
301 B
YAML
19 lines
No EOL
301 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
before_install:
|
|
- 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
|
|
|
|
after_success:
|
|
- coveralls |