File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,18 @@ python:
33 - " 2.7"
44 - " 3.4"
55sudo : required
6+ cache : pip
67install :
78 - " pip install -r requirements/production.txt"
89 - " pip install -r requirements/testing.txt"
910 - " pip install ."
1011before_script :
11- - sudo add-apt-repository ppa:jon-severinsson/ffmpeg -y
12- - sudo apt-get update -q
13- - sudo apt-get install imagemagick ffmpeg
12+ - wget -q http://johnvansickle.com/ffmpeg/builds/ffmpeg-git-64bit-static.tar.xz
13+ - tar xf ffmpeg-git-64bit-static.tar.xz
14+ - cd ffmpeg-*
15+ - sudo mv ff* /usr/bin/
16+ - ffmpeg -version
17+ - convert --version
1418script :
1519 - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e py27,coverage; fi
1620 - if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then tox -e py34; fi
You can’t perform that action at this time.
0 commit comments