Skip to content

Commit 9a0c905

Browse files
aykevldeadprogram
authored andcommitted
ci: don't pass -v to go test
It can be difficult to find what went wrong in a test. Omitting -v should make it easier to see the failing tests and the output for them (note that output is still printed for tests that fail).
1 parent ef3362b commit 9a0c905

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
run: make wasi-libc
9090
- name: Test TinyGo
9191
shell: bash
92-
run: make test GOTESTFLAGS="-v -short"
92+
run: make test GOTESTFLAGS="-short"
9393
- name: Build TinyGo release tarball
9494
run: make release -j3
9595
- name: Test stdlib packages

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
scoop install wasmtime
100100
- name: Test TinyGo
101101
shell: bash
102-
run: make test GOTESTFLAGS="-v -short"
102+
run: make test GOTESTFLAGS="-short"
103103
- name: Build TinyGo release tarball
104104
shell: bash
105105
run: make build/release -j4

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ GO ?= go
3030
export GOROOT = $(shell $(GO) env GOROOT)
3131

3232
# Flags to pass to go test.
33-
GOTESTFLAGS ?= -v
33+
GOTESTFLAGS ?=
3434

3535
# md5sum binary
3636
MD5SUM = md5sum

0 commit comments

Comments
 (0)