Preparing release version 3.10.1
This commit is contained in:
parent
b6f16abfe0
commit
2626bd9afa
|
@ -18,6 +18,40 @@ with advance notice in the **Deprecations** section of releases.
|
||||||
|
|
||||||
.. towncrier release notes start
|
.. towncrier release notes start
|
||||||
|
|
||||||
|
pytest 3.10.1 (2018-11-11)
|
||||||
|
==========================
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
---------
|
||||||
|
|
||||||
|
- `#4287 <https://github.com/pytest-dev/pytest/issues/4287>`_: Fix nested usage of debugging plugin (pdb), e.g. with pytester's ``testdir.runpytest``.
|
||||||
|
|
||||||
|
|
||||||
|
- `#4304 <https://github.com/pytest-dev/pytest/issues/4304>`_: Block the ``stepwise`` plugin if ``cacheprovider`` is also blocked, as one depends on the other.
|
||||||
|
|
||||||
|
|
||||||
|
- `#4306 <https://github.com/pytest-dev/pytest/issues/4306>`_: Parse ``minversion`` as an actual version and not as dot-separated strings.
|
||||||
|
|
||||||
|
|
||||||
|
- `#4310 <https://github.com/pytest-dev/pytest/issues/4310>`_: Fix duplicate collection due to multiple args matching the same packages.
|
||||||
|
|
||||||
|
|
||||||
|
- `#4321 <https://github.com/pytest-dev/pytest/issues/4321>`_: Fix ``item.nodeid`` with resolved symlinks.
|
||||||
|
|
||||||
|
|
||||||
|
- `#4325 <https://github.com/pytest-dev/pytest/issues/4325>`_: Fix collection of direct symlinked files, where the target does not match ``python_files``.
|
||||||
|
|
||||||
|
|
||||||
|
- `#4329 <https://github.com/pytest-dev/pytest/issues/4329>`_: Fix TypeError in report_collect with _collect_report_last_write.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Trivial/Internal Changes
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
- `#4305 <https://github.com/pytest-dev/pytest/issues/4305>`_: Replace byte/unicode helpers in test_capture with python level syntax.
|
||||||
|
|
||||||
|
|
||||||
pytest 3.10.0 (2018-11-03)
|
pytest 3.10.0 (2018-11-03)
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Fix nested usage of debugging plugin (pdb), e.g. with pytester's ``testdir.runpytest``.
|
|
|
@ -1 +0,0 @@
|
||||||
Block the ``stepwise`` plugin if ``cacheprovider`` is also blocked, as one depends on the other.
|
|
|
@ -1 +0,0 @@
|
||||||
Replace byte/unicode helpers in test_capture with python level syntax.
|
|
|
@ -1 +0,0 @@
|
||||||
Parse ``minversion`` as an actual version and not as dot-separated strings.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix duplicate collection due to multiple args matching the same packages.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix ``item.nodeid`` with resolved symlinks.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix collection of direct symlinked files, where the target does not match ``python_files``.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix TypeError in report_collect with _collect_report_last_write.
|
|
|
@ -6,6 +6,7 @@ Release announcements
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
|
|
||||||
|
release-3.10.1
|
||||||
release-3.10.0
|
release-3.10.0
|
||||||
release-3.9.3
|
release-3.9.3
|
||||||
release-3.9.2
|
release-3.9.2
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
pytest-3.10.1
|
||||||
|
=======================================
|
||||||
|
|
||||||
|
pytest 3.10.1 has just been released to PyPI.
|
||||||
|
|
||||||
|
This is a bug-fix release, being a drop-in replacement. To upgrade::
|
||||||
|
|
||||||
|
pip install --upgrade pytest
|
||||||
|
|
||||||
|
The full changelog is available at https://docs.pytest.org/en/latest/changelog.html.
|
||||||
|
|
||||||
|
Thanks to all who contributed to this release, among them:
|
||||||
|
|
||||||
|
* Anthony Sottile
|
||||||
|
* Boris Feld
|
||||||
|
* Bruno Oliveira
|
||||||
|
* Daniel Hahler
|
||||||
|
* Fabien ZARIFIAN
|
||||||
|
* Jon Dufresne
|
||||||
|
* Ronny Pfannschmidt
|
||||||
|
|
||||||
|
|
||||||
|
Happy testing,
|
||||||
|
The pytest Development Team
|
|
@ -85,9 +85,8 @@ interesting to just look at the collection tree::
|
||||||
rootdir: $REGENDOC_TMPDIR/nonpython, inifile:
|
rootdir: $REGENDOC_TMPDIR/nonpython, inifile:
|
||||||
collected 2 items
|
collected 2 items
|
||||||
<Package '$REGENDOC_TMPDIR/nonpython'>
|
<Package '$REGENDOC_TMPDIR/nonpython'>
|
||||||
<Package '$REGENDOC_TMPDIR/nonpython'>
|
<YamlFile 'test_simple.yml'>
|
||||||
<YamlFile 'test_simple.yml'>
|
<YamlItem 'hello'>
|
||||||
<YamlItem 'hello'>
|
<YamlItem 'ok'>
|
||||||
<YamlItem 'ok'>
|
|
||||||
|
|
||||||
======================= no tests ran in 0.12 seconds =======================
|
======================= no tests ran in 0.12 seconds =======================
|
||||||
|
|
Loading…
Reference in New Issue