We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ref #1656
Now run make test script:
make test
test: echo "mode: count" > coverage.out for d in $(TESTFOLDER); do \ $(GO) test -v -covermode=count -coverprofile=profile.out $$d; \ if [ -f profile.out ]; then \ cat profile.out | grep -v "mode:" >> coverage.out; \ rm profile.out; \ fi; \ done
If use $(GO) test -v -covermode=count -coverprofile=profile.out $$d; | grep "^--- FAIL" | exit 1;, it can output log to console.
$(GO) test -v -covermode=count -coverprofile=profile.out $$d; | grep "^--- FAIL" | exit 1;
So, how should we?
The text was updated successfully, but these errors were encountered:
please see #1671
Sorry, something went wrong.
thinkerou
Successfully merging a pull request may close this issue.
ref #1656
Now run
make test
script:If use
$(GO) test -v -covermode=count -coverprofile=profile.out $$d; | grep "^--- FAIL" | exit 1;
, it can output log to console.So, how should we?
The text was updated successfully, but these errors were encountered: