mirror of
https://github.com/cooperhammond/irs.git
synced 2024-11-09 18:48:33 +00:00
20 lines
522 B
YAML
20 lines
522 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
|
|
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 irs
|
|
- pip install coveralls # For coveralls.io
|
|
|
|
script:
|
|
- coverage run --source=irs tests/test_all.py
|
|
|
|
after_success:
|
|
- coveralls |