diff options
| -rw-r--r-- | justfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -92,11 +92,11 @@ docker-push registry=DEFAULT_REGISTRY: run repo=(TEMPDIR): git clone --bare mgmt {{repo}}/mgmt.git - go run cmd/main.go -a -r {{repo}} + TMPDIR={{TEMPDIR}} go run cmd/main.go -a -r {{repo}} test: golangci-lint run - TMPDIR=$PWD/testdata go test -v -coverprofile={{ TEMPDIR }}/testcover.out ./... + TMPDIR={{TEMPDIR}} go test -v -coverprofile={{ TEMPDIR }}/testcover.out ./... go tool cover -func={{ TEMPDIR }}/testcover.out debug-test pkg func: |