mirror of
https://github.com/umap-project/umap.git
synced 2025-04-29 11:52:38 +02:00
chore: set default language for tests as en-GB
This commit is contained in:
parent
b197e067e8
commit
802d5d9d6c
1 changed files with 5 additions and 0 deletions
|
@ -7,6 +7,11 @@ import pytest
|
||||||
from playwright.sync_api import expect
|
from playwright.sync_api import expect
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def browser_context_args(browser_context_args):
|
||||||
|
return {**browser_context_args, "locale": "en-GB"}
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
def set_timeout(context):
|
def set_timeout(context):
|
||||||
timeout = int(os.environ.get("PLAYWRIGHT_TIMEOUT", 7500))
|
timeout = int(os.environ.get("PLAYWRIGHT_TIMEOUT", 7500))
|
||||||
|
|
Loading…
Reference in a new issue