Add new test for non-sharing, fix non-sharing use case

This commit is contained in:
Max Berger
2026-03-26 21:20:02 +01:00
parent 78cf5f7fe3
commit bde188ff55
10 changed files with 100 additions and 31 deletions

View File

@@ -26,6 +26,7 @@ import pytest
from playwright.sync_api import BrowserContext, Page, expect
from integ_tests.common import (
NOSHARE_HTPASSWD,
SHARING_HTPASSWD,
SHARING_XREMOTE,
Config,
@@ -34,7 +35,9 @@ from integ_tests.common import (
)
@pytest.fixture(params=[SHARING_HTPASSWD, SHARING_XREMOTE], ids=lambda c: c.name)
@pytest.fixture(
params=[SHARING_HTPASSWD, SHARING_XREMOTE, NOSHARE_HTPASSWD], ids=lambda c: c.name
)
def config(request: pytest.FixtureRequest) -> Config:
return request.param