Skip to content

Commit f695dca

Browse files
committed
Further extend timeout
1 parent 816fb90 commit f695dca

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

choreographer/browsers/chromium.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ def get_cli(self) -> Sequence[str]:
195195
"--disable-dev-shm-usage",
196196
"--disable-background-networking",
197197
"--disable-background-timer-throttling",
198+
"--disable-backgrounding-occluded-windows",
198199
"--disable-component-update",
199200
"--disable-default-apps",
200201
"--disable-extensions",
@@ -211,7 +212,6 @@ def get_cli(self) -> Sequence[str]:
211212
"--disable-print-preview",
212213
"--disable-speech-api",
213214
"--mute-audio",
214-
"--single-process",
215215
"--no-default-browser-check",
216216
"--no-pings",
217217
"--disable-features=Translate,BackForwardCache,AcceptCHFrame,MediaRouter,OptimizationHints,AudioServiceOutOfProcess,IsolateOrigins,site-per-process",

choreographer/utils/_tmpfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def extra_clean() -> None:
193193
_logger.info(f"Extra manual clean executing {i}.")
194194
self._delete_manually(quiet=True)
195195
i += 1
196-
time.sleep(2)
196+
time.sleep(10)
197197
if self.path.exists():
198198
self._delete_manually(quiet=False)
199199

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async def wrapped_test_fn(*args, **kwargs):
8989

9090
def pytest_configure():
9191
# change this by command line TODO
92-
pytest.default_timeout = 20
92+
pytest.default_timeout = 60
9393

9494

9595
# pytest shuts down its capture before logging/threads finish

0 commit comments

Comments
 (0)