From b66b15591e8da450f41e23209c91cb178371b8cd Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 5 Mar 2019 11:17:47 -0800 Subject: [PATCH] tests: Mark functional tests with functional mark Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- functional_tests/test_plinth.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/functional_tests/test_plinth.py b/functional_tests/test_plinth.py index 3012b7d14..bac46d939 100644 --- a/functional_tests/test_plinth.py +++ b/functional_tests/test_plinth.py @@ -15,6 +15,7 @@ # along with this program. If not, see . # +import pytest from pytest_bdd import scenarios from step_definitions.application import * @@ -23,4 +24,7 @@ from step_definitions.service import * from step_definitions.site import * from step_definitions.system import * +# Mark all tests are functional +pytestmark = pytest.mark.functional + scenarios('features')