diff options
| author | Peter Soos <69847110+bpsoos@users.noreply.github.com> | 2024-06-27 21:11:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-27 15:11:26 -0400 |
| commit | 89f3bd1c75ed1f7e5e5525619e2c6ed51b988f7c (patch) | |
| tree | 2ce27121291a510665d6f9f067f7bc8964a044a4 /Makefile | |
| parent | c9ed948f17348fd6ef384294ece609213f185747 (diff) | |
:test_tube: adds manifest tests (#761)
Signed-off-by: bpsoos <soos.peter.96@gmail.com>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -67,9 +67,16 @@ mod-vendor: test: go test -coverprofile coverage.out `go list ./... | egrep -v '(test|mocks|ext/)'` + +.PHONY: test-race test-race: go test -race -coverprofile coverage.out `go list ./... | egrep -v '(test|mocks|ext/)'` +.PHONY: test-manifests +test-manifests: + ./scripts/test_manifests.sh + + .PHONY: prereq prereq: mkdir -p dist @@ -143,7 +150,7 @@ run-test: --argocd-server-addr $(ARGOCD_SERVER) \ --grpc-web - .PHONY: serve-docs serve-docs: - docker run ${MKDOCS_RUN_ARGS} --rm -it -p 8000:8000 -v ${CURRENT_DIR}:/docs ${MKDOCS_DOCKER_IMAGE} serve -a 0.0.0.0:8000
\ No newline at end of file + docker run ${MKDOCS_RUN_ARGS} --rm -it -p 8000:8000 -v ${CURRENT_DIR}:/docs ${MKDOCS_DOCKER_IMAGE} serve -a 0.0.0.0:8000 + |
