We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd041d9 commit 689bcb0Copy full SHA for 689bcb0
scripts/ci/test-backend
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
set -e
3
-set +x
+set -x
4
5
IMAGE=jc21/gotools:latest
6
@@ -49,7 +49,8 @@ if [ "${1:-}" = "--inside-docker" ]; then
49
go test -v -tags="unit integration" -covermode=atomic ./internal/... 2>&1 | go-junit-report -set-exit-code > "$DIR/../../test/results/junit/backend.xml"
50
rm -f "/tmp/coverage.out"
51
chown -R 1000:1000 "$DIR/../../test/results"
52
- golangci-lint -v run ./...
+ # disabled as it can't handle -buildvcs=false flag and complains about it:
53
+ # golangci-lint -v run ./...
54
else
55
# run this script from within docker
56
docker pull "${IMAGE}"
0 commit comments