We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b784280 commit 3c87c1cCopy full SHA for 3c87c1c
src/_pytest/compat.py
@@ -372,7 +372,7 @@ def getvalue(self) -> str:
372
return self.buffer.getvalue().decode("UTF-8")
373
374
375
-if sys.version_info < (3, 5, 2): # pragma: no cover
+if sys.version_info < (3, 5, 2):
376
377
def overload(f): # noqa: F811
378
return f
testing/python/raises.py
@@ -166,7 +166,7 @@ def __call__(self):
166
# Early versions of Python 3.5 have some bug causing the
167
# __call__ frame to still refer to t even after everything
168
# is done. This makes the test pass for them.
169
- if sys.version_info < (3, 5, 2): # pragma: no cover
+ if sys.version_info < (3, 5, 2):
170
del self
171
raise ValueError
172
0 commit comments