pytest 6.0.1 (2020-07-30)
Bug Fixes
- #7394: Passing an empty
help
value toParser.add_option
is now accepted instead of crashing when runningpytest --help
.
PassingNone
raises a more informativeTypeError
. - #7558: Fix pylint
not-callable
lint onpytest.mark.parametrize()
and the other builtin marks:
skip
,skipif
,xfail
,usefixtures
,filterwarnings
. - #7559: Fix regression in plugins using
TestReport.longreprtext
(such aspytest-html
) whenTestReport.longrepr
is not a string. - #7569: Fix logging capture handler's level not reset on teardown after a call to
caplog.set_level()
.