From 0f059b85fb3f78afc12bd192c8f818b8aac66432 Mon Sep 17 00:00:00 2001 From: Igor Sirotin Date: Sat, 31 Aug 2024 01:02:07 +0100 Subject: [PATCH] chore_: increase test timeouts --- _assets/ci/Jenkinsfile.tests | 2 +- _assets/scripts/run_unit_tests.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_assets/ci/Jenkinsfile.tests b/_assets/ci/Jenkinsfile.tests index b3507b89127..4e5541c088f 100644 --- a/_assets/ci/Jenkinsfile.tests +++ b/_assets/ci/Jenkinsfile.tests @@ -181,7 +181,7 @@ pipeline { env.PKG_URL = "${currentBuild.absoluteUrl}/consoleText" if (isTestNightlyJob()) { - archiveArtifacts('report_*.xml, test_*.log, exit_code_*.txt, *.coverage.out') + archiveArtifacts('report_*.xml, test_*.log, test-coverage.html, test-coverage.out, coverage/codeclimate.json') } if (params.UNIT_TEST_RERUN_FAILS) { def rerunReports = findFiles(glob: 'report_rerun_fails_*.txt') diff --git a/_assets/scripts/run_unit_tests.sh b/_assets/scripts/run_unit_tests.sh index 086ae412156..787fab60f73 100755 --- a/_assets/scripts/run_unit_tests.sh +++ b/_assets/scripts/run_unit_tests.sh @@ -94,8 +94,8 @@ rm -rf ./**/*.coverage.out echo -e "${GRN}Testing HEAD:${RST} $(git rev-parse HEAD)" -DEFAULT_TIMEOUT_MINUTES=3 -PROTOCOL_TIMEOUT_MINUTES=40 +DEFAULT_TIMEOUT_MINUTES=5 +PROTOCOL_TIMEOUT_MINUTES=45 if [[ "${UNIT_TEST_PACKAGES}" == *"github.com/status-im/status-go/protocol"* ]]; then HAS_PROTOCOL_PACKAGE=true fi