From 071d4d65112c42e23bda19ae5c869d87590a4e9f Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Mon, 28 Feb 2022 16:43:00 +0100 Subject: [PATCH] tests: add more delay to python tests --- tests/e2e/Services/Functions/FunctionsCustomServerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/Services/Functions/FunctionsCustomServerTest.php b/tests/e2e/Services/Functions/FunctionsCustomServerTest.php index 4f2ed0f294..06593a4eff 100644 --- a/tests/e2e/Services/Functions/FunctionsCustomServerTest.php +++ b/tests/e2e/Services/Functions/FunctionsCustomServerTest.php @@ -999,7 +999,7 @@ class FunctionsCustomServerTest extends Scope $folder = 'python'; $code = realpath(__DIR__ . '/../../../resources/functions'). "/$folder/code.tar.gz"; $this->packageCode($folder); - + $entrypoint = 'main.py'; $timeout = 2; @@ -1050,7 +1050,7 @@ class FunctionsCustomServerTest extends Scope $executionId = $execution['body']['$id'] ?? ''; - sleep(10); + sleep(30); $executions = $this->client->call(Client::METHOD_GET, '/functions/'.$functionId.'/executions/'.$executionId, array_merge([ 'content-type' => 'application/json',