forked from quodlibet/mutagen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
67 lines (65 loc) · 1.96 KB
/
.travis.yml
File metadata and controls
67 lines (65 loc) · 1.96 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
matrix:
allow_failures:
- python: "pypy3"
include:
- os: linux
dist: trusty
language: python
python: "2.7"
env: TYPE="linux" PYVER="2.7" PYARGS="-R"
- os: linux
dist: trusty
language: python
python: "3.3"
env: TYPE="linux" PYVER="3.3" PYARGS="-R -bb"
- os: linux
dist: trusty
language: python
python: "3.4"
env: TYPE="linux" PYVER="3.4" PYARGS="-R -bb"
- os: linux
dist: trusty
language: python
python: "3.5"
env: TYPE="linux" PYVER="3.5" PYARGS="-R -bb"
- os: linux
dist: trusty
language: python
python: "nightly"
env: TYPE="linux" PYVER="nightly" PYARGS="-R -bb"
- os: linux
dist: trusty
language: python
python: "pypy"
env: TYPE="linux" PYVER="pypy" PYARGS="-R"
- os: linux
dist: trusty
language: python
python: "pypy3"
env: TYPE="linux" PYVER="pypy3" PYARGS="-R -bb"
- os: linux
language: generic
sudo: required
dist: trusty
env: TYPE="windows" PYVER="2.7.11" PYARGS="-R"
- os: linux
language: generic
sudo: required
dist: trusty
env: TYPE="windows" PYVER="3.3.5" PYARGS="-R -bb"
- os: linux
language: generic
sudo: required
dist: trusty
env: TYPE="windows" PYVER="3.4.4" PYARGS="-R -bb"
- os: osx
language: generic
env: TYPE="osx" PYVER="system" PYARGS="-R"
install:
- if [ "$TYPE" == "windows" ]; then sudo dpkg --add-architecture i386; fi
- if [ "$TYPE" == "windows" ]; then travis_retry sudo apt-get update -q; fi
- if [ "$TYPE" == "windows" ]; then travis_retry sudo apt-get install --no-install-recommends -y wine xvfb; fi
script:
- if [ "$TYPE" == "linux" ]; then eval python $PYARGS ./setup.py test; fi
- if [ "$TYPE" == "osx" ]; then eval python $PYARGS ./setup.py test; fi
- if [ "$TYPE" == "windows" ]; then eval xvfb-run -a ./run_wine.sh "$PYVER" $PYARGS ./setup.py test; fi