Skip to content

Commit d91a38f

Browse files
committed
fix #739 - use matrix to separate python and node
1 parent 39e81fe commit d91a38f

File tree

1 file changed

+26
-20
lines changed

1 file changed

+26
-20
lines changed

.travis.yml

Lines changed: 26 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,33 @@
1-
language: node_js
2-
3-
dist: trusty
4-
5-
node_js:
6-
- "node"
7-
- "lts/*"
8-
1+
dist: xenial
92
services:
103
- postgresql
11-
124
addons:
135
postgresql: 9.6
146

15-
env:
16-
- NODE_ENV=tests
7+
matrix:
8+
include:
9+
- language: node_js
10+
node_js:
11+
- "node"
12+
- "lts/*"
13+
env:
14+
- NODE_ENV=tests
15+
install:
16+
- npm install
17+
before_script:
18+
- cp .env-dist .env
19+
- createdb test-blurts
20+
- npm install npm@latest -g
21+
22+
- language: python
23+
install:
24+
- sudo pip install compare-locales
25+
script:
26+
- compare-locales --validate l10n.toml .
27+
- compare-locales l10n.toml . `ls locales`
28+
29+
30+
31+
1732

18-
install:
19-
- sudo pip install compare-locales
20-
- npm install
2133

22-
before_script:
23-
- compare-locales --validate l10n.toml .
24-
- compare-locales l10n.toml . `ls locales`
25-
- cp .env-dist .env
26-
- createdb test-blurts
27-
- npm install npm@latest -g

0 commit comments

Comments
 (0)