irs/.travis.yml

24 lines
602 B
YAML
Raw Normal View History

2017-03-09 04:21:52 +00:00
language: python
python:
- "2.7"
- "3.5"
2017-04-30 17:59:38 +00:00
- "3.6"
2017-03-09 04:21:52 +00:00
2017-04-30 17:59:38 +00:00
before_script:
2017-03-10 01:49:10 +00:00
- sudo aptitude -y -q install ffmpeg libavcodec-extra-53 lame libmp3lame0
2017-04-30 17:59:38 +00:00
# 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.
2017-03-09 04:31:59 +00:00
2017-04-30 17:59:38 +00:00
install:
- pip install coveralls # For coveralls.io
2017-03-14 04:20:30 +00:00
- pip install nose
2017-04-30 18:12:51 +00:00
- python setup.py install
2017-03-09 04:21:52 +00:00
script:
2017-04-30 18:04:21 +00:00
- irs -u "spotify" -p "Coffee Table Jazz"
2017-03-14 04:41:38 +00:00
- nosetests --with-coverage --cover-package=irs
2017-04-30 17:59:38 +00:00
after_success:
2017-04-30 17:59:38 +00:00
- coveralls