Only run cluster tests on nightly tests, not nocluster tests (#6825)

This commit is contained in:
Philippe Martin
2023-05-22 18:04:41 +02:00
committed by GitHub
parent ec747b4ab3
commit db35b572ee
2 changed files with 4 additions and 4 deletions

View File

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

View File

@@ -26,8 +26,8 @@ oc login -u developer -p password@123 --insecure-skip-tls-verify
# Check login user name for debugging purpose
oc whoami
# Integration tests
make test-integration || error=true
# Cluster related Integration tests
make test-integration-cluster || error=true
# E2e tests
make test-e2e || error=true