mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
Do not cancel the whole execution if one of the test suite fails (#4943)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user