|  | @@ -106,11 +106,14 @@ RUN --mount=type=bind,target=. \
 | 
											
												
													
														|  |      --mount=type=cache,target=/go/pkg/mod \
 |  |      --mount=type=cache,target=/go/pkg/mod \
 | 
											
												
													
														|  |      rm -rf /tmp/coverage && \
 |  |      rm -rf /tmp/coverage && \
 | 
											
												
													
														|  |      mkdir -p /tmp/coverage && \
 |  |      mkdir -p /tmp/coverage && \
 | 
											
												
													
														|  | -    go test -tags "$BUILD_TAGS" -v -cover -covermode=atomic $(go list  $(TAGS) ./... | grep -vE 'e2e') -args -test.gocoverdir="/tmp/coverage" && \
 |  | 
 | 
											
												
													
														|  | 
 |  | +    rm -rf /tmp/report && \
 | 
											
												
													
														|  | 
 |  | +    mkdir -p /tmp/report && \
 | 
											
												
													
														|  | 
 |  | +    go run gotest.tools/gotestsum@latest --format testname --junitfile "/tmp/report/report.xml" -- -tags "$BUILD_TAGS" -v -cover -covermode=atomic $(go list  $(TAGS) ./... | grep -vE 'e2e') -args -test.gocoverdir="/tmp/coverage" && \
 | 
											
												
													
														|  |      go tool covdata percent -i=/tmp/coverage
 |  |      go tool covdata percent -i=/tmp/coverage
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  FROM scratch AS test-coverage
 |  |  FROM scratch AS test-coverage
 | 
											
												
													
														|  |  COPY --from=test --link /tmp/coverage /
 |  |  COPY --from=test --link /tmp/coverage /
 | 
											
												
													
														|  | 
 |  | +COPY --from=test --link /tmp/report /
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  FROM base AS license-set
 |  |  FROM base AS license-set
 | 
											
												
													
														|  |  ARG LICENSE_FILES
 |  |  ARG LICENSE_FILES
 |