File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,12 @@ matrix:
44 include :
55 - node_js : ' 8.9'
66 env :
7- - INTEGRATION_TESTS=false
7+ - DISABLE_INTEGRATION_TESTS=true
88 - node_js : ' 10.6'
9- env :
10- - INTEGRATION_TESTS=true
119 - node_js : ' 10.6'
1210 env :
13- - DISABLE_TESTS=true
11+ - DISABLE_INTEGRATION_TESTS=true
12+ - DISABLE_UNIT_TESTS=true
1413 - LINTING=true
1514
1615sudo : false
@@ -19,9 +18,9 @@ install:
1918 - travis_retry npm install
2019
2120script :
22- - if [[ -z "$DISABLE_TESTS " ]]; then npm run test; fi
21+ - if [[ -z "$DISABLE_UNIT_TESTS " ]]; then npm run test; fi
2322 - if [[ ! -z "$DISABLE_TESTS" && ! -z "$LINTING" ]]; then npm run lint; fi
24- - if [[ ! -z "$INTEGRATION_TESTS " ]]; then npm run integration-test; fi
23+ - if [[ -z "$DISABLE_INTEGRATION_TESTS " ]]; then npm run integration-test; fi
2524
2625after_success :
27- - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
26+ - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
You can’t perform that action at this time.
0 commit comments