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).
Этот коммит содержится в:
Ayke van Laethem 2023-02-19 22:41:55 +01:00 коммит произвёл Ron Evans
родитель cce9c6d5a1
коммит ec27d9fb48
3 изменённых файлов: 3 добавлений и 3 удалений

2
.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

2
.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

Просмотреть файл

@ -30,7 +30,7 @@ GO ?= go
export GOROOT = $(shell $(GO) env GOROOT)
# Flags to pass to go test.
GOTESTFLAGS ?= -v
GOTESTFLAGS ?=
# md5sum binary
MD5SUM = md5sum