mirror of
https://github.com/cooperhammond/irs.git
synced 2025-01-08 20:05:27 +00:00
testing with python 3.6
This commit is contained in:
parent
33f6c1cc38
commit
11d5cd340a
13
.travis.yml
13
.travis.yml
|
@ -2,20 +2,21 @@ language: python
|
||||||
python:
|
python:
|
||||||
- "2.7"
|
- "2.7"
|
||||||
- "3.5"
|
- "3.5"
|
||||||
|
- "3.6"
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- sudo aptitude -y -q install ffmpeg libavcodec-extra-53 lame libmp3lame0
|
- sudo aptitude -y -q install ffmpeg libavcodec-extra-53 lame libmp3lame0
|
||||||
# These dependencies are necessary for ffmpeg. I currently hate all things
|
# 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.
|
# 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.
|
# I've gone through 25 seperate commits to get it working.
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install coveralls # For coveralls.io
|
- pip install coveralls # For coveralls.io
|
||||||
- pip install nose
|
- pip install nose
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- python setup.py install
|
- python setup.py install
|
||||||
- nosetests --with-coverage --cover-package=irs
|
- nosetests --with-coverage --cover-package=irs
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- coveralls
|
- coveralls
|
||||||
|
|
Loading…
Reference in a new issue