mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-04 23:17:48 +00:00
28 lines
384 B
YAML
28 lines
384 B
YAML
|
language: python
|
||
|
|
||
|
python:
|
||
|
- 2.6
|
||
|
- 2.7
|
||
|
- 3.2
|
||
|
- 3.3
|
||
|
- 3.4
|
||
|
- pypy
|
||
|
|
||
|
script:
|
||
|
- python setup.py install
|
||
|
- coverage run --source=spotipy.py tests/tests.py
|
||
|
|
||
|
after_success:
|
||
|
- coverage report
|
||
|
- coveralls
|
||
|
- pip install pep8 pyflakes
|
||
|
- pep8 PIL/*.py
|
||
|
- pyflakes PIL/*.py
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- python: 2.6
|
||
|
- python: 3.2
|
||
|
- python: 3.4
|
||
|
- python: pypy
|