You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN go get -u github.com/jstemmer/go-junit-report
RUN go get -u github.com/axw/gocov/gocov
RUN go get -u github.com/AlekSi/gocov-xml
RUN go get -u gopkg.in/matm/v1/gocov-html
And then he can call commands:
RUN go test ./... -v 2>&1 | go-junit-report > report.xml
RUN gocov test ./... | gocov-xml > coverage.xml
RUN gocov test ./... | gocov-html > index.html
go-junit-report - generates test report in JUnit format
gocov - generates test coverage report in cobertura format
2.1) gocov-xml - generates output in xml format
2.1) gocov-html - generates output in html format
The text was updated successfully, but these errors were encountered:
A developer can download the following tools:
And then he can call commands:
2.1) gocov-xml - generates output in xml format
2.1) gocov-html - generates output in html format
The text was updated successfully, but these errors were encountered: