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 0c126fd commit a0ee5c2Copy full SHA for a0ee5c2
src/_pytest/mark/structures.py
@@ -48,9 +48,7 @@ def get_empty_parameterset_mark(
48
from ..nodes import Collector
49
50
fs, lineno = getfslineno(func)
51
- reason = (
52
- f"got empty parameter set {argnames!r}, function {func.__name__} at {fs}:{lineno}"
53
- )
+ reason = f"got empty parameter set {argnames!r}, function {func.__name__} at {fs}:{lineno}"
54
requested_mark = config.getini(EMPTY_PARAMETERSET_OPTION)
55
if requested_mark in ("", None, "skip"):
56
mark = MARK_GEN.skip(reason=reason)
0 commit comments