We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb71234 commit 62eef97Copy full SHA for 62eef97
.travis.yml
@@ -3,6 +3,8 @@ language: node_js
3
matrix:
4
include:
5
- node_js: '8.9'
6
+ env:
7
+ - INTEGRATION_TESTS=false
8
- node_js: '10.6'
9
env:
10
- INTEGRATION_TESTS=true
@@ -19,7 +21,7 @@ install:
19
21
script:
20
22
- if [[ -z "$DISABLE_TESTS" ]]; then npm run test; fi
23
- if [[ ! -z "$DISABLE_TESTS" && ! -z "$LINTING" ]]; then npm run lint; fi
- - if [[ ! -z "$INTEGRATION_TESTS" && $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]]; then npm run integration-test; fi
24
+ - if [[ ! -z "$INTEGRATION_TESTS" ]]; then npm run integration-test; fi
25
26
after_success:
27
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
0 commit comments