irs/.travis.yml
2017-04-30 11:12:51 -07:00

24 lines
602 B
YAML

language: python
python:
- "2.7"
- "3.5"
- "3.6"
before_script:
- sudo aptitude -y -q install ffmpeg libavcodec-extra-53 lame libmp3lame0
# These dependencies are necessary for ffmpeg. I currently hate all things
# doing with Travis and ffmpeg because I have no direct access to test stuff.
# I've gone through 25 seperate commits to get it working.
install:
- pip install coveralls # For coveralls.io
- pip install nose
- python setup.py install
script:
- irs -u "spotify" -p "Coffee Table Jazz"
- nosetests --with-coverage --cover-package=irs
after_success:
- coveralls