Skip to content

Commit 7ec5840

Browse files
committed
Run Frontend's tests separately
Run Frontend's tests and Backend's tests in parallel.
1 parent cfe6e08 commit 7ec5840

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.travis.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,26 @@ matrix:
4848
allow_failures:
4949
- rust: nightly
5050
include:
51-
- rust: stable
51+
- name: Backend
52+
rust: stable
5253
before_install:
53-
- nvm install 10
54-
- npm ci
5554
- rustup component add rustfmt-preview
5655
- rustup component add clippy-preview
5756
script:
5857
- cargo fmt -- --check
5958
- cargo clippy --all-targets --all-features --all
6059
- cargo test
60+
- name: Frontend
61+
rust: stable
62+
before_install:
63+
- nvm install 10
64+
- npm ci
65+
# skip diesel
66+
install:
67+
- echo
68+
before_script:
69+
- echo
70+
script:
6171
- npm run lint:js
6272
- npm test
6373
- rust: beta

0 commit comments

Comments
 (0)