From 77ad804908eae98888cbc0d8cd5dd108a91f1301 Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Wed, 16 Nov 2022 20:32:26 +0100 Subject: [PATCH] CI: Increase load limit for `verdi` to 0.5 seconds Recently, the verdi load-time test has been failing frequently because the load time often exceeds the current limit of 0.4 seconds. For now we raise the limit to 0.5 to reduce the false positives while we find a permanent fix of reducing the load time. --- .github/workflows/verdi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verdi.sh b/.github/workflows/verdi.sh index 9e715c3ffb..ac9ecda4b6 100755 --- a/.github/workflows/verdi.sh +++ b/.github/workflows/verdi.sh @@ -9,7 +9,7 @@ VERDI=`which verdi` # tends to go towards ~0.8 seconds. Since these timings are obviously machine and environment dependent, typically these # types of tests are fragile. But with a load limit of more than twice the ideal loading time, if exceeded, should give # a reasonably sure indication that the loading of `verdi` is unacceptably slowed down. -LOAD_LIMIT=0.4 +LOAD_LIMIT=0.5 MAX_NUMBER_ATTEMPTS=5 iteration=0