From c50c50cfbf11fd6f7bafd7c9315e7d80e126ed12 Mon Sep 17 00:00:00 2001 From: dsiganos Date: Thu, 8 Jul 2021 21:43:56 +0100 Subject: [PATCH] Remove load_test from github CI (#3373) The load_test is currently broken. It usually loops forever and the CI is waiting for it to timeout. Even if it did work, we ignore its result. So overall, the load_test in CI is a liability at the moment and it is offering us nothing in CI. --- ci/test.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ci/test.sh b/ci/test.sh index 24959555..8319aaff 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -70,13 +70,9 @@ run_tests() { xvfb_run_ ./qt_test qt_test_res=${?} - ${TIMEOUT_CMD} ${TIMEOUT_TIME_ARG} ${TIMEOUT_SEC-${TIMEOUT_DEFAULT}} ./load_test -s 150 -n 5 - load_test_res=${?} - echo "Core Test return code: ${core_test_res}" echo "RPC Test return code: ${rpc_test_res}" echo "QT Test return code: ${qt_test_res}" - echo "Load Test return code: ${load_test_res}" return ${core_test_res} }