diff --git a/Makefile b/Makefile index bb6bbd8df..764d12ea9 100644 --- a/Makefile +++ b/Makefile @@ -184,7 +184,9 @@ e2e-tests-sequential: .PHONY: e2e-tests-parallel ## Runs kuttl e2e parallel tests, (Defaults to 5 runs at a time) e2e-tests-parallel: - CI=prow make e2e-tests-parallel-ginkgo + "scripts/run-rollouts-e2e-tests.sh" + + # CI=prow make e2e-tests-parallel-ginkgo # @echo "Running GitOps Operator parallel E2E tests..." # . ./scripts/run-kuttl-tests.sh parallel diff --git a/scripts/openshiftci-presubmit-all-tests.sh b/scripts/openshiftci-presubmit-all-tests.sh index 498e0fee1..879c34257 100755 --- a/scripts/openshiftci-presubmit-all-tests.sh +++ b/scripts/openshiftci-presubmit-all-tests.sh @@ -29,3 +29,10 @@ cd ../.. # Run e2e test make test-e2e +# Run Rollouts E2E tests +cd "$SCRIPT_DIR" + +# Get path containing the current script, usually (repo path)/scripts +SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) + +"$SCRIPT_DIR/run-rollouts-e2e-tests.sh"