This MR contains the following updates:
Package | Change | Age | Confidence |
---|---|---|---|
pytest (changelog) |
==4.6.3 -> ==4.6.11
|
v4.6.11
: pytest 4.6.11 (2020-06-04)#6334: Fix summary entries appearing twice when f/F
and s/S
report chars were used at the same time in the -r
command-line option (for example -rFf
).
The upper case variants were never documented and the preferred form should be the lower case.
#7310: Fix UnboundLocalError: local variable 'letter' referenced before assignment
in _pytest.terminal.pytest_report_teststatus()
when plugins return report objects in an unconventional state.
This was making pytest_report_teststatus()
skip
entering if-block branches that declare the letter
variable.
The fix was to set the initial value of the letter
before
the if-block cascade so that it always has a value.
v4.6.10
: pytest 4.6.10 (2020-05-08)#6870: New Config.invocation_args
attribute containing the unchanged arguments passed to pytest.main()
.
Remark: while this is technically a new feature and according to our policy it should not have been backported, we have opened an exception in this particular case because it fixes a serious interaction with pytest-xdist, so it can also be considered a bugfix.
v4.6.9
editable
installs (pip install --editable
).v4.6.8
colorama
to 0.4.1
only for Python 3.4 so newer Python versions
can still receive colorama updates.v4.6.7
--junitxml
now correctly contain a <testsuites>
root element.FileNotFoundError
(OSError.errno == NOENT
in Python 2)
exceptions when trying to remove old temporary directories, for
instance when multiple processes try to remove the same directory
(common with pytest-xdist
for example).v4.6.6
-vs
) in Python 3.8+.importlib_metadata
backport with importlib.metadata
from the
standard library on Python 3.8+.--pastebin
to "text".cmp
attribute in attrs>=19.2
.flake8-2020
) in case python4
becomes a thing.v4.6.5
#4344: Fix RuntimeError/StopIteration when trying to collect package with "init.py" only.
#5478: Fix encode error when using unicode strings in exceptions with pytest.raises
.
#5524: Fix issue where tmp_path
and tmpdir
would not remove directories containing files marked as read-only,
which could lead to pytest crashing when executed a second time with the --basetemp
option.
#5547: --step-wise
now handles xfail(strict=True)
markers properly.
#5650: Improved output when parsing an ini configuration file fails.
v4.6.4
This MR has been generated by Renovate Bot.