Do not cancel the whole execution if one of the test suite fails (#4943)

This commit is contained in:
Priti Kumari
2021-08-03 16:26:42 +05:30
committed by GitHub
parent 2e661bf71d
commit dbaf95599c

View File

@@ -27,14 +27,18 @@ oc login -u developer -p password@123
oc whoami
# Integration tests
make test-integration
make test-integration-devfile
make test-cmd-login-logout
make test-cmd-project
make test-operator-hub
make test-integration || error=true
make test-integration-devfile || error=true
make test-cmd-login-logout || error=true
make test-cmd-project || error=true
make test-operator-hub || error=true
# E2e tests
make test-e2e-all
make test-e2e-all || error=true
if [ $error ]; then
exit -1
fi
cp -r reports $ARTIFACT_DIR