Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
Next try #12
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Okhrimenko <iokhrime@redhat.com>
  • Loading branch information
Ohrimenko1988 committed May 20, 2020
1 parent 43ca14f commit 76197b1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .ci/cico-devfile-pr-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function createTestWorkspaceAndRunTest() {
-e TS_SELENIUM_DEFAULT_TIMEOUT=300000 \
-e TS_SELENIUM_WORKSPACE_STATUS_POLLING=20000 \
-e TS_SELENIUM_LOAD_PAGE_TIMEOUT=420000 \
-e TEST_SUITE="test-all-devfiles" \
-e TEST_SUITE="test-java-vertx" \
-e NODE_TLS_REJECT_UNAUTHORIZED=0 \
quay.io/eclipse/che-e2e:nightly || IS_TESTS_FAILED=true
}
Expand Down Expand Up @@ -172,6 +172,7 @@ function installJQ() {

set -x

export IS_TESTS_FAILED=false
export FAIL_MESSAGE="Build failed."

SCRIPT_DIR=$(cd "$(dirname "$0")"; pwd)
Expand Down Expand Up @@ -237,3 +238,7 @@ createTestWorkspaceAndRunTest
getOpenshiftLogs

archiveArtifacts "che-devfile-registry-prcheck"

if [ "$IS_TESTS_FAILED" == "true" ]; then
exit 1;
fi

0 comments on commit 76197b1

Please sign in to comment.