From 98cfa321cb466d75c81a65adcd141ab5b3fdda06 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 22 Dec 2021 19:03:59 -0800 Subject: [PATCH] wordpress: tests: functional: Add missing marks on tests Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/wordpress/tests/test_functional.py | 2 ++ pyproject.toml | 1 + 2 files changed, 3 insertions(+) diff --git a/plinth/modules/wordpress/tests/test_functional.py b/plinth/modules/wordpress/tests/test_functional.py index 8a594a5b4..4f73fd984 100644 --- a/plinth/modules/wordpress/tests/test_functional.py +++ b/plinth/modules/wordpress/tests/test_functional.py @@ -7,6 +7,8 @@ import pytest from plinth.tests import functional +pytestmark = [pytest.mark.apps, pytest.mark.wordpress] + @pytest.fixture(scope='module', autouse=True) def fixture_background(session_browser): diff --git a/pyproject.toml b/pyproject.toml index 5e46e2701..0d4e658b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,5 +64,6 @@ markers = [ "ttrss", "upgrades", "users", + "wordpress", "zoph", ]