Skip to content

Commit 1b364c5

Browse files
Adding a new pytest marker for local unit tests
1 parent 8d4657a commit 1b364c5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pytest.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ markers =
2525
#main: tests designed to run against the main branch
2626
#release: tests designed to run specifically against a release branch
2727
utils: test setup and support methods
28+
utils_local: test setup and support methods locally
2829
smoke: tests designed to run as part of the smokescreen regression test suite
2930
wip: tests that are currently in progress
3031
smokescreen: all compartments to be run as part of the smokescreen

tests_utils/test_calendar_picker_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from datetime import datetime
44
from playwright.sync_api import Page
55

6-
pytestmark = [pytest.mark.utils]
6+
pytestmark = [pytest.mark.utils_local]
77

88

99
def test_calculate_v2_calendar_variables(page: Page):

0 commit comments

Comments
 (0)