mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-07-30 06:59:06 +00:00
6 lines
223 B
Bash
Executable File
6 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
cd "$(dirname $0)/../api"
|
|
go test ./... -v -database -filesystem -p 1 -coverpkg=./... -coverprofile=coverage.txt -covermode=atomic 2>&1 | tee >(go-junit-report >test-api-coverage-report.xml)
|