Skip to content

Commit

Permalink
Don't exit integration test early if npm test fails
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyjbauer committed Apr 18, 2019
1 parent e1a7d92 commit b89e90f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/frontend-integration-test/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,11 @@ POD=`/src/tools/google-cloud-sdk/bin/kubectl get pods -n ${NAMESPACE} -l app=ml-
./node_modules/.bin/wait-port 127.0.0.1:3000 -t 20000

export PIPELINE_OUTPUT=${RESULTS_GCS_DIR}/pipeline_output
# Don't exit early if 'npm test' fails
set +e
npm test
TEST_EXIT_CODE=$?
set -e

JUNIT_TEST_RESULT=junit_FrontendIntegrationTestOutput.xml

Expand Down

0 comments on commit b89e90f

Please sign in to comment.