changeset 579:5d157c486568

fix auth test startup sequence
author Alain Mazy <am@osimis.io>
date Mon, 11 Sep 2023 09:04:17 +0200
parents c474f0f815b6
children f4579c9ec73b
files NewTests/Authorization/test_authorization.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/NewTests/Authorization/test_authorization.py	Sat Sep 09 13:18:21 2023 +0200
+++ b/NewTests/Authorization/test_authorization.py	Mon Sep 11 09:04:17 2023 +0200
@@ -74,7 +74,7 @@
             # first build the docker image for the auth-service
             subprocess.run(["docker", "build", "-t", "auth-service", "."], cwd=here)
             cls.auth_service_process = subprocess.Popen(["docker", "run", "-p", "8020:8020", "--network", "auth-test-network", "--name", "auth-service", "auth-service"])
-            pass
+            time.sleep(5)
 
 
         if Helpers.break_before_preparation: