forked from mozilla-services/buildhub
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
37 lines (35 loc) · 863 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
language: python
python: 3.6
cache: pip
matrix:
include:
- language: python
install:
- pip install tox
script:
- cd jobs; tox -e flake8
- language: python
install:
- pip install tox
- pip install kinto kinto-wizard
- kinto init --backend memory
before_script:
- kinto start &
- sleep 3; kinto-wizard load jobs/buildhub/initialization.yml --server http://localhost:8888/v1 --auth user:pass
script:
- cd jobs; tox -e py36
after_success:
# Report coverage results to coveralls.io
- pip install coveralls
- coveralls
- language: node_js
node_js: 7
install:
- cd ui
- npm install
before_script:
script:
- npm run build
cache:
directories:
- "node_modules"