Skip to content

Commit ce2b50b

Browse files
fixup! fixup! Add timeout to auth/aio tests
1 parent c3dd90f commit ce2b50b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/auth/aio/authorization_test_helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def clean_browser_processes():
5757
if os.getenv("AUTHENTICATION_TESTS_ENV") == "docker":
5858
try:
5959
clean_browser_processes_path = "/externalbrowser/cleanBrowserProcesses.js"
60-
process = subprocess.run(["node", clean_browser_processes_path], timeout=15)
60+
process = subprocess.run(["node", clean_browser_processes_path], timeout=30)
6161
logger.debug(f"OUTPUT: {process.stdout}, ERRORS: {process.stderr}")
6262
except Exception as e:
6363
raise RuntimeError(e)
@@ -167,7 +167,7 @@ def _provide_credentials(self, scenario: Scenario, login: str, password: str):
167167
login,
168168
password,
169169
],
170-
timeout=15,
170+
timeout=30,
171171
)
172172
logger.debug(f"OUTPUT: {process.stdout}, ERRORS: {process.stderr}")
173173
except Exception as e:

0 commit comments

Comments
 (0)