Skip to content

Commit

Permalink
Further extend timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ayjayt committed Jan 29, 2025
1 parent 816fb90 commit f695dca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion choreographer/browsers/chromium.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ def get_cli(self) -> Sequence[str]:
"--disable-dev-shm-usage",
"--disable-background-networking",
"--disable-background-timer-throttling",
"--disable-backgrounding-occluded-windows",
"--disable-component-update",
"--disable-default-apps",
"--disable-extensions",
Expand All @@ -211,7 +212,6 @@ def get_cli(self) -> Sequence[str]:
"--disable-print-preview",
"--disable-speech-api",
"--mute-audio",
"--single-process",
"--no-default-browser-check",
"--no-pings",
"--disable-features=Translate,BackForwardCache,AcceptCHFrame,MediaRouter,OptimizationHints,AudioServiceOutOfProcess,IsolateOrigins,site-per-process",
Expand Down
2 changes: 1 addition & 1 deletion choreographer/utils/_tmpfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def extra_clean() -> None:
_logger.info(f"Extra manual clean executing {i}.")
self._delete_manually(quiet=True)
i += 1
time.sleep(2)
time.sleep(10)
if self.path.exists():
self._delete_manually(quiet=False)

Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async def wrapped_test_fn(*args, **kwargs):

def pytest_configure():
# change this by command line TODO
pytest.default_timeout = 20
pytest.default_timeout = 60


# pytest shuts down its capture before logging/threads finish
Expand Down

0 comments on commit f695dca

Please sign in to comment.