Skip to content

Commit 27d4919

Browse files
committed
Add qe-tests target
1 parent 842d13f commit 27d4919

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,14 @@ test: ## run helm tests
230230
helmlint: ## run helm lint
231231
@for t in $(CHARTS); do common/scripts/lint.sh $$t $(TEST_OPTS); if [ $$? != 0 ]; then exit 1; fi; done
232232

233+
.PHONY: qe-tests
234+
qe-tests: ## Runs the tests that QE runs
235+
@set -e; if [ -f ./tests/interop/run_tests.sh ]; then \
236+
./tests/interop/run_tests.sh; \
237+
else \
238+
echo "No ./tests/interop/run_tests.sh found skipping"; \
239+
fi
240+
233241
API_URL ?= https://raw.githubusercontent.com/hybrid-cloud-patterns/ocp-schemas/main/openshift/4.10/
234242
KUBECONFORM_SKIP ?= -skip 'CustomResourceDefinition,ClusterIssuer,CertManager,Certificate,ArgoCD'
235243

0 commit comments

Comments
 (0)