Revert "Run only E2E tests on OpenShift CI"

This reverts commit 133356ae44.
This commit is contained in:
Armel Soro
2024-05-17 11:11:22 +02:00
parent 133356ae44
commit 3bfebaa4e6
3 changed files with 14 additions and 0 deletions

View File

@@ -27,6 +27,8 @@ oc login -u developer -p password@123 --insecure-skip-tls-verify
# Check login user name for debugging purpose
oc whoami
# Cluster related integration tests
make test-integration-cluster
make test-e2e
oc logout

View File

@@ -26,6 +26,9 @@ oc login -u developer -p password@123 --insecure-skip-tls-verify
# Check login user name for debugging purpose
oc whoami
# Cluster related Integration tests
make test-integration-cluster || error=true
# E2e tests
make test-e2e || error=true
@@ -33,4 +36,6 @@ if [ $error ]; then
exit -1
fi
oc logout

View File

@@ -37,12 +37,19 @@ oc whoami
# We want to use a stable Devfile registry for InterOP testing, and so we use the custom Devfile Registry setup on IBM cloud
source ./scripts/openshiftci-config.sh
if [ "${ARCH}" == "s390x" ]; then
# Integration tests
make test-integration
# E2e tests
make test-e2e
elif [ "${ARCH}" == "ppc64le" ]; then
# Integration tests
make test-integration
# E2e tests
make test-e2e
else
# Integration tests
make test-integration || error=true
# E2e tests
make test-e2e || error=true