From b1262258462e35cf47f681a55d78b399fc2c6cf6 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Fri, 19 Jun 2020 18:57:37 +0300 Subject: [PATCH 1/3] Fixed worker path --- docker/supervisord.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/supervisord.conf b/docker/supervisord.conf index ed94f03311..43036d9628 100644 --- a/docker/supervisord.conf +++ b/docker/supervisord.conf @@ -168,7 +168,7 @@ stderr_logfile=/dev/stderr stderr_logfile_maxbytes = 0 [program:v1-schedule] -command=php /usr/share/nginx/html/vendor/chrisboulton/php-resque-scheduler/resque-scheduler.php +command=php /usr/share/nginx/html/vendor/bin/resque-scheduler autostart=true autorestart=true priority=10 From 3943d30e28494589ba2c3ea53f4a61dbef86bd95 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Fri, 19 Jun 2020 20:10:48 +0300 Subject: [PATCH 2/3] Updated tests order --- tests/e2e/Services/Account/AccountBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/Services/Account/AccountBase.php b/tests/e2e/Services/Account/AccountBase.php index 794f6f2577..b712da69a3 100644 --- a/tests/e2e/Services/Account/AccountBase.php +++ b/tests/e2e/Services/Account/AccountBase.php @@ -64,6 +64,7 @@ trait AccountBase */ public function testCreateAccountSession($data):array { + sleep(10); $email = (isset($data['email'])) ? $data['email'] : ''; $password = (isset($data['password'])) ? $data['password'] : ''; @@ -279,7 +280,6 @@ trait AccountBase */ public function testGetAccountLogs($data):array { - sleep(10); $session = (isset($data['session'])) ? $data['session'] : ''; /** From 27a8406be68172d6dc637f8e5f0536688f8ab0dc Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Fri, 19 Jun 2020 20:21:55 +0300 Subject: [PATCH 3/3] Fixed tests order --- tests/e2e/Services/Account/AccountBase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e/Services/Account/AccountBase.php b/tests/e2e/Services/Account/AccountBase.php index b712da69a3..0b49cf219d 100644 --- a/tests/e2e/Services/Account/AccountBase.php +++ b/tests/e2e/Services/Account/AccountBase.php @@ -280,6 +280,7 @@ trait AccountBase */ public function testGetAccountLogs($data):array { + sleep(10); $session = (isset($data['session'])) ? $data['session'] : ''; /**