chore: set default navigation timeout for CI
This commit is contained in:
parent
d8c2e14b42
commit
dd69efb45b
1 changed files with 3 additions and 0 deletions
|
@ -6,6 +6,9 @@ import pytest
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
def set_timeout(context):
|
def set_timeout(context):
|
||||||
context.set_default_timeout(int(os.environ.get("PLAYWRIGHT_TIMEOUT", 7500)))
|
context.set_default_timeout(int(os.environ.get("PLAYWRIGHT_TIMEOUT", 7500)))
|
||||||
|
context.set_default_navigation_timeout(
|
||||||
|
int(os.environ.get("PLAYWRIGHT_TIMEOUT", 7500))
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
|
|
Loading…
Reference in a new issue