Skip to content

Commit f5ef8c5

Browse files
committed
Added make command to run helm tests.
1 parent e1f756e commit f5ef8c5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ ingest:
3636
@command -v bash >/dev/null 2>&1 || { echo "bash is required but not installed"; exit 1; }
3737
@./ingest.sh || { echo "Ingestion failed."; exit 1; }
3838

39+
tests:
40+
@echo "Running tests."
41+
@command -v helm >/dev/null 2>&1 || { echo "helm is required but not installed"; exit 1; }
42+
@helm unittest helm-chart/eoapi -f 'tests/*.yaml' -v helm-chart/eoapi/test-helm-values.yaml
43+
3944
help:
4045
@echo "Makefile commands:"
4146
@echo " make deploy - Install eoAPI on a cluster kubectl is connected to."

0 commit comments

Comments
 (0)