From 9bad96c863df3c3daa9eb621895d49167dd643dd Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Tue, 5 Oct 2021 09:38:56 -0400 Subject: [PATCH] tests: Add some missed marks for functional tests Signed-off-by: James Valleroy Reviewed-by: Sunil Mohan Adapa --- plinth/modules/mldonkey/tests/test_functional.py | 2 +- plinth/modules/searx/tests/test_functional.py | 2 +- plinth/modules/security/tests/test_functional.py | 2 +- plinth/modules/syncthing/tests/test_functional.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plinth/modules/mldonkey/tests/test_functional.py b/plinth/modules/mldonkey/tests/test_functional.py index c6fe54db8..1a439a37d 100644 --- a/plinth/modules/mldonkey/tests/test_functional.py +++ b/plinth/modules/mldonkey/tests/test_functional.py @@ -6,7 +6,7 @@ Functional, browser based tests for mldonkey app. import pytest from plinth.tests import functional -pytestmark = [pytest.mark.apps, pytest.mark.mldonkey] +pytestmark = [pytest.mark.apps, pytest.mark.mldonkey, pytest.mark.sso] @pytest.fixture(scope='module', autouse=True) diff --git a/plinth/modules/searx/tests/test_functional.py b/plinth/modules/searx/tests/test_functional.py index cf35c60b7..74f952c91 100644 --- a/plinth/modules/searx/tests/test_functional.py +++ b/plinth/modules/searx/tests/test_functional.py @@ -6,7 +6,7 @@ Functional, browser based tests for searx app. import pytest from plinth.tests import functional -pytestmark = [pytest.mark.apps, pytest.mark.searx] +pytestmark = [pytest.mark.apps, pytest.mark.searx, pytest.mark.sso] @pytest.fixture(scope='module', autouse=True) diff --git a/plinth/modules/security/tests/test_functional.py b/plinth/modules/security/tests/test_functional.py index 356d3f12d..80b2e8f66 100644 --- a/plinth/modules/security/tests/test_functional.py +++ b/plinth/modules/security/tests/test_functional.py @@ -6,7 +6,7 @@ Functional, browser based tests for security app. import pytest from plinth.tests import functional -pytestmark = [pytest.mark.system, pytest.mark.security] +pytestmark = [pytest.mark.system, pytest.mark.essential, pytest.mark.security] @pytest.fixture(scope='module', autouse=True) diff --git a/plinth/modules/syncthing/tests/test_functional.py b/plinth/modules/syncthing/tests/test_functional.py index f72bfd1d5..e5ce13e00 100644 --- a/plinth/modules/syncthing/tests/test_functional.py +++ b/plinth/modules/syncthing/tests/test_functional.py @@ -8,7 +8,7 @@ import time import pytest from plinth.tests import functional -pytestmark = [pytest.mark.apps, pytest.mark.syncthing] +pytestmark = [pytest.mark.apps, pytest.mark.syncthing, pytest.mark.sso] @pytest.fixture(scope='module', autouse=True)