Skip to content

Commit

Permalink
fixes test timeout variable call again
Browse files Browse the repository at this point in the history
  • Loading branch information
luispresuelVenafi committed Sep 30, 2024
1 parent 4c943bc commit 3bd2a16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ test: get linter
go tool cover -func=cov_cmd.out

tpp_test: get
go test -v $(GOFLAGS) -coverprofile=cov_tpp.out ./pkg/venafi/tpp -timeout $$TEST_TIMEOUT
go test -v $(GOFLAGS) -coverprofile=cov_tpp.out ./pkg/venafi/tpp -timeout $(TEST_TIMEOUT)
go tool cover -func=cov_tpp.out

cloud_test: get
go test -v $(GOFLAGS) -coverprofile=cov_vaas.out ./pkg/venafi/cloud -timeout $$TEST_TIMEOUT
go test -v $(GOFLAGS) -coverprofile=cov_vaas.out ./pkg/venafi/cloud -timeout $(TEST_TIMEOUT)
go tool cover -func=cov_vaas.out

firefly_test: get
go test -v $(GOFLAGS) -coverprofile=cov_firefly.out ./pkg/venafi/firefly -timeout $$TEST_TIMEOUT
go test -v $(GOFLAGS) -coverprofile=cov_firefly.out ./pkg/venafi/firefly -timeout $(TEST_TIMEOUT)
go tool cover -func=cov_firefly.out

cmd_test: get
Expand Down

0 comments on commit 3bd2a16

Please sign in to comment.