From 8688f2fc801fa248c623081c35b65426bd648c62 Mon Sep 17 00:00:00 2001 From: Jason Dreyzehner Date: Thu, 15 Jun 2017 17:19:40 -0400 Subject: [PATCH] remove extraneous 'npm install' from Travis build --- .travis.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index d29d491..7f51d59 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,13 +19,11 @@ before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - -before_script: -- cd $TEST_DIR # switch to the directory we're testing -- npm install + - cd $TEST_DIR # switch to the directory we're testing + # npm install happens here script: - npm run test-ci after_success: - - ./node_modules/.bin/codecov # Send coverage \ No newline at end of file + - ./node_modules/.bin/codecov # Send coverage