We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99befe1 commit e13532bCopy full SHA for e13532b
.travis.yml
@@ -1,13 +1,3 @@
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
language: node_js
12
13
node_js:
@@ -16,10 +6,17 @@ node_js:
16
install:
17
- npm install
18
+before_script:
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
+ - chmod +x ./cc-test-reporter
+ - ./cc-test-reporter before-build
+
19
14
script:
20
- - npm run cover
15
+ - npm run travis
+after_script:
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
21
22
after_success:
23
- - bash <(curl -s https://codecov.io/bash) || true
+ - bash <(curl -s https://codecov.io/bash) || true
24
- coveralls < coverage/lcov.info || true
25
- - codeclimate-test-reporter < coverage/lcov.info || true
0 commit comments