diff --git a/src/index.js b/src/index.js index c60028c..72f0624 100644 --- a/src/index.js +++ b/src/index.js @@ -47,7 +47,7 @@ async function run() { if (no_parallel) { addArg += ' -parallel 1'; } - let tCommand = `go test -v${addArg} -coverprofile=${scopeLogsPath}/coverage.out ./...`; + let tCommand = `go test ${addArg} -coverprofile=${scopeLogsPath}/coverage.out ./...`; let bCommand = `go test -run Benchmark -bench=.`; if (test_command) { tCommand = test_command; @@ -88,4 +88,4 @@ async function run() { } -run(); \ No newline at end of file +run();