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