From 11d5cd340a3e7f28140aff59ce6a087c9c9a524c Mon Sep 17 00:00:00 2001 From: Kepoor Hampond Date: Sun, 30 Apr 2017 10:59:38 -0700 Subject: [PATCH] testing with python 3.6 --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1cc20ff..5ad5ecd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,20 +2,21 @@ language: python python: - "2.7" - "3.5" + - "3.6" -before_script: +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. + # 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: +install: - pip install coveralls # For coveralls.io - pip install nose script: - python setup.py install - nosetests --with-coverage --cover-package=irs - + after_success: - - coveralls \ No newline at end of file + - coveralls