tests: Add some missed marks for functional tests

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
James Valleroy 2021-10-05 09:38:56 -04:00 committed by Sunil Mohan Adapa
parent 0aaf9ad6df
commit 9bad96c863
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2
4 changed files with 4 additions and 4 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)