forked from xbmc/addon-check
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
91 lines (87 loc) · 3.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
dist: bionic
language: python
python: 3.8
matrix:
include:
- python: 3.5
- python: 3.6
- python: 3.7
- python: 3.8
- env: REPO=repo-plugins BRANCH=gotham
- env: REPO=repo-plugins BRANCH=helix
- env: REPO=repo-plugins BRANCH=isengard
- env: REPO=repo-plugins BRANCH=jarvis
- env: REPO=repo-plugins BRANCH=krypton
- env: REPO=repo-plugins BRANCH=leia
- env: REPO=repo-plugins BRANCH=matrix
- env: REPO=repo-scrapers BRANCH=gotham
- env: REPO=repo-scrapers BRANCH=helix
- env: REPO=repo-scrapers BRANCH=isengard
- env: REPO=repo-scrapers BRANCH=jarvis
- env: REPO=repo-scrapers BRANCH=krypton
- env: REPO=repo-scrapers BRANCH=leia
- env: REPO=repo-scrapers BRANCH=matrix
- env: REPO=repo-resources BRANCH=isengard
- env: REPO=repo-resources BRANCH=jarvis
- env: REPO=repo-resources BRANCH=krypton
- env: REPO=repo-resources BRANCH=leia
- env: REPO=repo-resources BRANCH=matrix
- env: REPO=repo-scripts BRANCH=gotham
- env: REPO=repo-scripts BRANCH=helix
- env: REPO=repo-scripts BRANCH=isengard
- env: REPO=repo-scripts BRANCH=jarvis
- env: REPO=repo-scripts BRANCH=krypton
- env: REPO=repo-scripts BRANCH=leia
- env: REPO=repo-scripts BRANCH=matrix
- env: REPO=repo-skins BRANCH=krypton
- env: REPO=repo-skins BRANCH=leia
- env: REPO=repo-skins BRANCH=matrix
allow_failures:
- env: REPO=repo-plugins BRANCH=gotham
- env: REPO=repo-plugins BRANCH=helix
- env: REPO=repo-plugins BRANCH=isengard
- env: REPO=repo-plugins BRANCH=jarvis
- env: REPO=repo-plugins BRANCH=krypton
- env: REPO=repo-plugins BRANCH=leia
- env: REPO=repo-plugins BRANCH=matrix
- env: REPO=repo-scrapers BRANCH=gotham
- env: REPO=repo-scrapers BRANCH=helix
- env: REPO=repo-scrapers BRANCH=isengard
- env: REPO=repo-scrapers BRANCH=jarvis
- env: REPO=repo-scrapers BRANCH=krypton
- env: REPO=repo-scrapers BRANCH=leia
- env: REPO=repo-scrapers BRANCH=matrix
- env: REPO=repo-resources BRANCH=isengard
- env: REPO=repo-resources BRANCH=jarvis
- env: REPO=repo-resources BRANCH=krypton
- env: REPO=repo-resources BRANCH=leia
- env: REPO=repo-resources BRANCH=matrix
- env: REPO=repo-scripts BRANCH=gotham
- env: REPO=repo-scripts BRANCH=helix
- env: REPO=repo-scripts BRANCH=isengard
- env: REPO=repo-scripts BRANCH=jarvis
- env: REPO=repo-scripts BRANCH=krypton
- env: REPO=repo-scripts BRANCH=leia
- env: REPO=repo-scripts BRANCH=matrix
- env: REPO=repo-skins BRANCH=krypton
- env: REPO=repo-skins BRANCH=leia
- env: REPO=repo-skins BRANCH=matrix
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install pylint
before_script:
- if [[ -n "$REPO" && -n "$BRANCH" ]]; then
git clone --branch=$BRANCH --depth=1 --single-branch https://github.com/xbmc/$REPO.git ../repo;
fi
# command to run tests
script:
- if [[ -n "$REPO" && -n "$BRANCH" ]]; then
python3 -m kodi_addon_checker --branch=$BRANCH ../repo;
fi
- if [[ -z "$REPO" || -z "$BRANCH" ]]; then
py.test -v;
fi
- if [[ -z "$REPO" || -z "$BRANCH" ]]; then
pylint *;
fi