From f1260d192af0f183514cab91d35331b69a6e6a36 Mon Sep 17 00:00:00 2001 From: Mike Bland Date: Fri, 18 Aug 2017 20:43:33 -0400 Subject: [PATCH] test/scripts: Temporarily disable coverage I want to do a PR specifically focusing on enabling coverage for Bats tests, and to see if it can be unified with the JavaScript coverage reports. --- scripts/test.d/scripts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/test.d/scripts b/scripts/test.d/scripts index 09869fd..59dd47e 100755 --- a/scripts/test.d/scripts +++ b/scripts/test.d/scripts @@ -1,8 +1,6 @@ #! /usr/bin/env bash # # Tests `./go` scripts -# -# # Passes all arguments through to `@go.bats_main` from `lib/bats-main`. _test_main() { @@ -12,7 +10,9 @@ _test_main() { . "$_GO_USE_MODULES" 'bats-main' # Tab completions - @go.bats_main "$@" + + # Coverage is temporarily disabled. + _GO_COLLECT_BATS_COVERAGE= @go.bats_main "$@" } _test_main "$@"