diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml index 4ed13aba..49bdc03e 100644 --- a/.github/workflows/test-docs.yml +++ b/.github/workflows/test-docs.yml @@ -46,6 +46,7 @@ jobs: env: DJANGO_SETTINGS_MODULE: 'umap.tests.settings' UMAP_SETTINGS: 'umap/tests/settings.py' + PLAYWRIGHT_TIMEOUT: '10000' lint: runs-on: ubuntu-latest steps: diff --git a/umap/tests/integration/conftest.py b/umap/tests/integration/conftest.py index 6ed9eb59..89a115e9 100644 --- a/umap/tests/integration/conftest.py +++ b/umap/tests/integration/conftest.py @@ -1,9 +1,11 @@ +import os + import pytest @pytest.fixture(autouse=True) def set_timeout(context): - context.set_default_timeout(7500) + context.set_default_timeout(os.environ.get("PLAYWRIGHT_TIMEOUT", 7500)) @pytest.fixture