Add deps dependency to e2e-test make target

Without the deps dependency the e2e-test target would sometimes
fail in the CI due to missing entries in the go.sum file.
This commit is contained in:
sirkrypt0
2021-05-28 09:13:59 +02:00
parent 6084b00e23
commit 892f902377
2 changed files with 2 additions and 1 deletions

View File

@ -80,7 +80,7 @@ coverhtml: coverage ## Generate HTML coverage report
@go tool cover -html=coverage_cleaned.cov -o coverage_unit.html
.PHONY: e2e-test
e2e-test: ## Run e2e tests
e2e-test: deps ## Run e2e tests
@go test -count=1 ./e2e_tests -v
.PHONY: e2e-docker