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 5ebc760 commit 2c80779Copy full SHA for 2c80779
src/_pytest/mark/structures.py
@@ -146,8 +146,8 @@ class Mark:
146
#: keyword arguments of the mark decorator
147
kwargs = attr.ib() # Dict[str, object]
148
149
- _param_ids_from = attr.ib(type=Optional["Mark"], default=None)
150
- _param_ids_generated = attr.ib(type=Optional[List[str]], default=None)
+ _param_ids_from = attr.ib(type=Optional["Mark"], default=None, repr=False)
+ _param_ids_generated = attr.ib(type=Optional[List[str]], default=None, repr=False)
151
152
def _has_param_ids(self):
153
return "ids" in self.kwargs or len(self.args) >= 4
0 commit comments