forked from saimn/sigal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
54 lines (49 loc) · 1.09 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
language: python
cache: pip
sudo: false
matrix:
include:
- python: 3.5
addons:
apt:
sources:
- trusty-media
packages:
- ubuntu-restricted-extras
- ffmpeg
- libavcodec-extra-54
before_script:
ffmpeg --help
- python: 3.6
addons:
apt:
sources:
- trusty-media
packages:
- ubuntu-restricted-extras
- ffmpeg
- libavcodec-extra-54
before_script:
ffmpeg --help
- python: 3.7
dist: xenial
sudo: true
before_install:
- sudo add-apt-repository ppa:mc3man/xerus-media -y
- sudo apt-get update -qq
- sudo apt-get install -qq ubuntu-restricted-extras ffmpeg
before_script:
ffmpeg --help
- python: 3.6
env: TOXENV=doc
- python: 3.6
env: TOXENV=check
allow_failures:
- env: TOXENV=check
install: pip install -U tox-travis
script: tox
after_success:
- pip install codecov
- codecov
notifications:
irc: "chat.freenode.net#sigal"