summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Soos <69847110+bpsoos@users.noreply.github.com>2024-06-27 21:11:26 +0200
committerGitHub <noreply@github.com>2024-06-27 15:11:26 -0400
commit89f3bd1c75ed1f7e5e5525619e2c6ed51b988f7c (patch)
tree2ce27121291a510665d6f9f067f7bc8964a044a4 /Makefile
parentc9ed948f17348fd6ef384294ece609213f185747 (diff)
:test_tube: adds manifest tests (#761)
Signed-off-by: bpsoos <soos.peter.96@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 419814f..decc81c 100644
--- a/Makefile
+++ b/Makefile
@@ -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
+