Skip to content

Commit eafd61a

Browse files
committed
Fix pytest missing markers definitions
1 parent e06156b commit eafd61a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/feature/test_report.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ def test_step_trace(testdir):
2525
"""Test step trace."""
2626
testdir.makefile(".ini", pytest=textwrap.dedent("""
2727
[pytest]
28-
markers = scenario-passing-tag
28+
markers =
29+
feature-tag
30+
scenario-passing-tag
31+
scenario-failing-tag
2932
"""))
3033
feature = testdir.makefile('.feature', test=textwrap.dedent("""
3134
@feature-tag

0 commit comments

Comments
 (0)