Skip to content

Commit 9e0850e

Browse files
authored
Update conftest.py
1 parent d376db3 commit 9e0850e

File tree

1 file changed

+1
-1
lines changed
  • {{cookiecutter.project_slug}}/tests/scenarios

1 file changed

+1
-1
lines changed

{{cookiecutter.project_slug}}/tests/scenarios/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def pytest_bdd_apply_tag(tag: str, function: Callable[..., Any]) -> bool | None:
6767
Returns:
6868
bool | None: True if the tag was handled, otherwise None.
6969
"""
70-
if tag == "todo":
70+
if tag.lower() == "todo":
7171
marker = pytest.mark.skip(reason="Not implemented yet")
7272
marker(function)
7373
return True

0 commit comments

Comments
 (0)