forked from artefactual/archivematica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
69 lines (48 loc) · 962 Bytes
/
.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
---
sudo: false
dist: xenial
language: python
cache: pip
branches:
only:
- qa/1.x
- /^stable\/\d+\.\d+\.x$/
before_script:
- pip install tox
script: tox
install: true
notifications:
email: false
matrix:
fast_finish: true
include:
# Dashboard
- python: "2.7"
env: TOXENV=py27
- python: "3.6"
env: TOXENV=py36
# MCPServer
- python: "2.7"
env: TOXENV=mcpserver
- python: "3.6"
env: TOXENV=mcpserver
# Linters
- python: "3.7"
env: TOXENV=linting
# Dashboard JS
- language: node_js
node_js: "8"
cache: npm
before_install:
- cd ./src/dashboard/frontend/
install: npm install
before_script:
- '' # override global before_script
script: npm run "test-single-run"
addons:
chrome: stable
allow_failures:
- python: "3.6"
env: TOXENV=py36
- python: "3.6"
env: TOXENV=mcpserver