[education/rkward] /: Allow more time for backend startup in ci-testing

Thomas Friedrichsmeier null at kde.org
Wed Oct 5 16:35:38 BST 2022


Git commit 471e1138f4baa845a6742b45e082a2ffea2c8eec by Thomas Friedrichsmeier.
Committed on 05/10/2022 at 15:35.
Pushed by tfry into branch 'master'.

Allow more time for backend startup in ci-testing

M  +1    -1    .kde-ci.yml
M  +1    -1    rkward/autotests/core_test.cpp

https://invent.kde.org/education/rkward/commit/471e1138f4baa845a6742b45e082a2ffea2c8eec

diff --git a/.kde-ci.yml b/.kde-ci.yml
index 5e58bc28..56a07201 100644
--- a/.kde-ci.yml
+++ b/.kde-ci.yml
@@ -21,4 +21,4 @@ Dependencies:
 Options:
   require-passing-tests-on: [ 'Linux', 'FreeBSD', 'Windows' ]
   tests-load-sensitve: True
-  per-test-timeout: 60
+  per-test-timeout: 90
diff --git a/rkward/autotests/core_test.cpp b/rkward/autotests/core_test.cpp
index ab568685..095e0aeb 100644
--- a/rkward/autotests/core_test.cpp
+++ b/rkward/autotests/core_test.cpp
@@ -91,7 +91,7 @@ class RKWardCoreTest: public QObject {
 		QElapsedTimer t;
 		t.start();
 		while (!(RInterface::instance()->backendIsDead() || RInterface::instance()->backendIsIdle())) {
-			if (t.elapsed() > 20000) break;
+			if (t.elapsed() > 40000) break;
 			qApp->sendPostedEvents();
 		}
 		if (RInterface::instance()->backendIsIdle()) {


More information about the rkward-tracker mailing list