mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 19:53:17 +00:00
20 lines
No EOL
337 B
YAML
20 lines
No EOL
337 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
before_install:
|
|
- pip install -U pytest pytest-cov
|
|
- pip install -U coveralls
|
|
|
|
install:
|
|
- pip install -r requirements_dev.txt
|
|
|
|
script: py.test tests/tests_pytest --cov-config .coveragerc --cov=plexapi --cov-report=html
|
|
|
|
after_success:
|
|
- coveralls |