We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d376db3 commit 9e0850eCopy full SHA for 9e0850e
{{cookiecutter.project_slug}}/tests/scenarios/conftest.py
@@ -67,7 +67,7 @@ def pytest_bdd_apply_tag(tag: str, function: Callable[..., Any]) -> bool | None:
67
Returns:
68
bool | None: True if the tag was handled, otherwise None.
69
"""
70
- if tag == "todo":
+ if tag.lower() == "todo":
71
marker = pytest.mark.skip(reason="Not implemented yet")
72
marker(function)
73
return True
0 commit comments