From 8fcf99ebf38e2a22827bf4fdbef9790178173e49 Mon Sep 17 00:00:00 2001 From: Dave Herman Date: Tue, 19 Sep 2017 08:31:34 -0700 Subject: [PATCH] Fixing Travis build script. --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f4d8c30e0..d775c2fcb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,11 +27,10 @@ addons: - g++-4.8 script: | - cd tests/ && - npm test && + cd cli && npm install && npm run transpile && npm test && npm link && cd .. && + cd tests && npm link neon-cli && npm test && cd .. && if [[ "$TRAVIS_RUST_VERSION" == nightly* ]]; then - cd ../compile_tests/ && - cargo test + cd compile_tests && cargo test && cd .. fi jobs: