diff options
author | Ayke van Laethem <[email protected]> | 2023-02-19 22:41:55 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2023-02-20 00:23:52 +0100 |
commit | ec27d9fb48acbd82496a52b977ac1011e81628b2 (patch) | |
tree | f7ca443e39adce79a11b1a277cf326e72f0115da /.github | |
parent | cce9c6d5a12ad7ba91310e501cb56b78d4eb6df0 (diff) | |
download | tinygo-ec27d9fb48acbd82496a52b977ac1011e81628b2.tar.gz tinygo-ec27d9fb48acbd82496a52b977ac1011e81628b2.zip |
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).
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index fb7e3d675..46b77a89a 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -89,7 +89,7 @@ jobs: run: make wasi-libc - name: Test TinyGo shell: bash - run: make test GOTESTFLAGS="-v -short" + run: make test GOTESTFLAGS="-short" - name: Build TinyGo release tarball run: make release -j3 - name: Test stdlib packages diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4286892cd..95825358a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -99,7 +99,7 @@ jobs: scoop install wasmtime - name: Test TinyGo shell: bash - run: make test GOTESTFLAGS="-v -short" + run: make test GOTESTFLAGS="-short" - name: Build TinyGo release tarball shell: bash run: make build/release -j4 |