From 64ebe08a78811a6b7bb8b291498641bf6b555164 Mon Sep 17 00:00:00 2001 From: elsid Date: Thu, 8 Aug 2024 22:34:48 +0200 Subject: [PATCH] Increase Lua memory limit for integration tests To avoid failures like https://gitlab.com/OpenMW/openmw/-/jobs/7534143520. --- scripts/integration_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/integration_tests.py b/scripts/integration_tests.py index bd93a317b3..4d63c0f2dd 100755 --- a/scripts/integration_tests.py +++ b/scripts/integration_tests.py @@ -65,7 +65,7 @@ def runTest(name): "[Game]\n" "smooth animation transitions = true\n" "[Lua]\n" - f"memory limit = {1024 * 1024 * 128}\n" + f"memory limit = {1024 * 1024 * 256}\n" ) stdout_lines = list() exit_ok = True