We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba1908b commit 2ce4b6eCopy full SHA for 2ce4b6e
2 files changed
content-gen/tests/e2e-test/pytest.ini
@@ -4,3 +4,5 @@ log_cli_level = INFO
4
log_file = logs/tests.log
5
log_file_level = INFO
6
addopts = -p no:warnings
7
+markers =
8
+ gp: Golden Path tests
content-gen/tests/e2e-test/tests/test_content_gen_gp_tc.py
@@ -2,13 +2,15 @@
2
import logging
3
import time
+import pytest
+
from pages.HomePage import HomePage
from config.constants import URL
9
from tests.test_utils import log_test_summary, log_test_failure
10
11
logger = logging.getLogger(__name__)
12
-
13
+@pytest.mark.gp
14
def test_validate_gp(login_logout, request):
15
"""
16
Test case to validate content generation golden path flow for two quick links.
0 commit comments