-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy path.travis.yml
60 lines (53 loc) · 1.08 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
matrix:
include:
- language: python
python: "3.5"
before_script:
- pip install tox
env:
- INFO=PythonTests
script:
- tox -e py35
- tox -e coverage
- language: python
python: "3.6"
before_script:
- pip install tox
env:
- INFO=PythonTests
script:
- tox -e py36
- language: python
python: "3.5"
env:
- INFO=PythonCodeCheck
before_script: make pydevrequirements
script:
- make flake8
- make pydocstyle
- language: node_js
env:
- INFO=JavaScriptTest
node_js: "7"
script:
- make qunit
- language: node_js
env:
- INFO=JavaScriptCodeCheck
node_js: "7"
script:
- make eslint
git:
depth: 3
cache:
- pip
- directories:
- node_modules # NPM packages
# safelist
branches:
only:
- master
- develop
#after_success:
# not necessary, done by tox
# coveralls