Skip to content

Release version 3.10.1 #4372

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,40 @@ with advance notice in the **Deprecations** section of releases.

.. 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)
==========================

Expand Down
1 change: 0 additions & 1 deletion changelog/4287.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/4304.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/4305.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/4306.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/4310.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/4321.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/4325.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/4329.bugfix.rst

This file was deleted.

1 change: 1 addition & 0 deletions doc/en/announce/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Release announcements
:maxdepth: 2


release-3.10.1
release-3.10.0
release-3.9.3
release-3.9.2
Expand Down
24 changes: 24 additions & 0 deletions doc/en/announce/release-3.10.1.rst
Original file line number Diff line number Diff line change
@@ -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
7 changes: 3 additions & 4 deletions doc/en/example/nonpython.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,8 @@ interesting to just look at the collection tree::
rootdir: $REGENDOC_TMPDIR/nonpython, inifile:
collected 2 items
<Package '$REGENDOC_TMPDIR/nonpython'>
<Package '$REGENDOC_TMPDIR/nonpython'>
<YamlFile 'test_simple.yml'>
<YamlItem 'hello'>
<YamlItem 'ok'>
<YamlFile 'test_simple.yml'>
<YamlItem 'hello'>
<YamlItem 'ok'>

======================= no tests ran in 0.12 seconds =======================