Skip to content

Commit

Permalink
Add qe-tests target
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaldessari committed Sep 25, 2024
1 parent 842d13f commit 27d4919
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,14 @@ test: ## run helm tests
helmlint: ## run helm lint
@for t in $(CHARTS); do common/scripts/lint.sh $$t $(TEST_OPTS); if [ $$? != 0 ]; then exit 1; fi; done

.PHONY: qe-tests
qe-tests: ## Runs the tests that QE runs
@set -e; if [ -f ./tests/interop/run_tests.sh ]; then \
./tests/interop/run_tests.sh; \
else \
echo "No ./tests/interop/run_tests.sh found skipping"; \
fi

API_URL ?= https://raw.githubusercontent.com/hybrid-cloud-patterns/ocp-schemas/main/openshift/4.10/
KUBECONFORM_SKIP ?= -skip 'CustomResourceDefinition,ClusterIssuer,CertManager,Certificate,ArgoCD'

Expand Down

0 comments on commit 27d4919

Please sign in to comment.