From 3eb77a6715869c0d4ad47d7952633f883dfb7461 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 11 Jan 2017 12:49:23 +0100 Subject: [PATCH] Revert "coverage reporter throws" This reverts commit 1bdcec342be2c1309c9d3993a5516283e6df31a4. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6bedf740e15..02d0fb00dcc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,8 +42,8 @@ script: - gulp electron --silent - gulp compile --silent - gulp optimize-vscode --silent - - if [[ "$TRAVIS_OS_NAME" == "linux_off" ]]; then ./scripts/test.sh --reporter dot --coverage; else ./scripts/test.sh --reporter dot; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./scripts/test.sh --reporter dot --coverage; else ./scripts/test.sh --reporter dot; fi - ./scripts/test-integration.sh after_success: - - if [[ "$TRAVIS_OS_NAME" == "linux_off" ]]; then node_modules/.bin/coveralls < .build/coverage/lcov.info; fi \ No newline at end of file + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then node_modules/.bin/coveralls < .build/coverage/lcov.info; fi \ No newline at end of file -- GitLab