File tree 1 file changed +9
-12
lines changed
1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change 1
- env :
2
- - CXX=g++-4.8
3
-
4
- addons :
5
- apt :
6
- sources :
7
- - ubuntu-toolchain-r-test
8
- packages :
9
- - g++-4.8
10
-
11
1
language : node_js
12
2
13
3
node_js :
@@ -16,10 +6,17 @@ node_js:
16
6
install :
17
7
- npm install
18
8
9
+ before_script :
10
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
11
+ - chmod +x ./cc-test-reporter
12
+ - ./cc-test-reporter before-build
13
+
19
14
script :
20
15
- npm run cover
21
16
17
+ after_script :
18
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
19
+
22
20
after_success :
23
- - bash <(curl -s https://codecov.io/bash) || true
21
+ - bash <(curl -s https://codecov.io/bash) || true
24
22
- coveralls < coverage/lcov.info || true
25
- - codeclimate-test-reporter < coverage/lcov.info || true
You can’t perform that action at this time.
0 commit comments