Browse Source

Only run acceptance tests when it's not a Pull Request

As they will always fail, as they do not have secrets
Kevin van Zonneveld 8 years ago
parent
commit
660a181257
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -21,7 +21,7 @@ script:
 - npm run web:install
 - npm run build
 - npm run test
-- npm run test:acceptance:handleservers
+- [ "${TRAVIS_PULL_REQUEST}" = "false" ] && npm run test:acceptance:handleservers
 env:
   global:
   - CXX=g++-4.8