Skip to content

Commit abb5cb9

Browse files
joecotton-wkBrian Meyers
andauthored
RM-155955 Release v3.2.5 (#13)
* STUD-773 Adding test report to skynet runs * STUD-773 Testing assets output to directories Co-authored-by: Brian Meyers <[email protected]>
1 parent a56e6dd commit abb5cb9

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ xlsx.test
55
*.swp
66
coverage.txt
77
.idea
8-
8+
test-reports/

Makefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
test:
1+
SHELL := /bin/bash
2+
3+
test: tools
4+
rm -rf test-reports
5+
mkdir test-reports
26
go clean -testcache
3-
go test -v $$(go list ./... | grep -v /vendor/)
7+
go test -v 2>&1 `go list ./... | grep -v /vendor/` | go-junit-report -iocopy -set-exit-code -out test-reports/unit-test-report.xml
8+
9+
tools:
10+
go install github.com/jstemmer/go-junit-report/[email protected]

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ github.com/rogpeppe/fastuuid v1.2.0 h1:Ppwyp6VYCF1nvBTXL3trRso7mXMlRrw9ooo375wvi
1919
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
2020
github.com/shabbyrobe/xmlwriter v0.0.0-20200208144257-9fca06d00ffa h1:2cO3RojjYl3hVTbEvJVqrMaFmORhL6O06qdW42toftk=
2121
github.com/shabbyrobe/xmlwriter v0.0.0-20200208144257-9fca06d00ffa/go.mod h1:Yjr3bdWaVWyME1kha7X0jsz3k2DgXNa1Pj3XGyUAbx8=
22-
golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=
2322
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
2423
golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=
2524
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=

skynet.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,7 @@ scripts:
1616
- make test
1717

1818
artifacts:
19-
- /testing/out
19+
- test-reports
20+
21+
test-reports:
22+
- test-reports

0 commit comments

Comments
 (0)