Skip to content

Commit 9af613b

Browse files
authored
Merge pull request #4372 from nicoddemus/release-3.10.1
Release version 3.10.1
2 parents 7b833ce + 2626bd9 commit 9af613b

File tree

12 files changed

+62
-12
lines changed

12 files changed

+62
-12
lines changed

CHANGELOG.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,40 @@ with advance notice in the **Deprecations** section of releases.
1818
1919
.. towncrier release notes start
2020
21+
pytest 3.10.1 (2018-11-11)
22+
==========================
23+
24+
Bug Fixes
25+
---------
26+
27+
- `#4287 <https://github.com/pytest-dev/pytest/issues/4287>`_: Fix nested usage of debugging plugin (pdb), e.g. with pytester's ``testdir.runpytest``.
28+
29+
30+
- `#4304 <https://github.com/pytest-dev/pytest/issues/4304>`_: Block the ``stepwise`` plugin if ``cacheprovider`` is also blocked, as one depends on the other.
31+
32+
33+
- `#4306 <https://github.com/pytest-dev/pytest/issues/4306>`_: Parse ``minversion`` as an actual version and not as dot-separated strings.
34+
35+
36+
- `#4310 <https://github.com/pytest-dev/pytest/issues/4310>`_: Fix duplicate collection due to multiple args matching the same packages.
37+
38+
39+
- `#4321 <https://github.com/pytest-dev/pytest/issues/4321>`_: Fix ``item.nodeid`` with resolved symlinks.
40+
41+
42+
- `#4325 <https://github.com/pytest-dev/pytest/issues/4325>`_: Fix collection of direct symlinked files, where the target does not match ``python_files``.
43+
44+
45+
- `#4329 <https://github.com/pytest-dev/pytest/issues/4329>`_: Fix TypeError in report_collect with _collect_report_last_write.
46+
47+
48+
49+
Trivial/Internal Changes
50+
------------------------
51+
52+
- `#4305 <https://github.com/pytest-dev/pytest/issues/4305>`_: Replace byte/unicode helpers in test_capture with python level syntax.
53+
54+
2155
pytest 3.10.0 (2018-11-03)
2256
==========================
2357

changelog/4287.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/4304.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/4305.trivial.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/4306.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/4310.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/4321.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/4325.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/4329.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/en/announce/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release announcements
66
:maxdepth: 2
77

88

9+
release-3.10.1
910
release-3.10.0
1011
release-3.9.3
1112
release-3.9.2

doc/en/announce/release-3.10.1.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
pytest-3.10.1
2+
=======================================
3+
4+
pytest 3.10.1 has just been released to PyPI.
5+
6+
This is a bug-fix release, being a drop-in replacement. To upgrade::
7+
8+
pip install --upgrade pytest
9+
10+
The full changelog is available at https://docs.pytest.org/en/latest/changelog.html.
11+
12+
Thanks to all who contributed to this release, among them:
13+
14+
* Anthony Sottile
15+
* Boris Feld
16+
* Bruno Oliveira
17+
* Daniel Hahler
18+
* Fabien ZARIFIAN
19+
* Jon Dufresne
20+
* Ronny Pfannschmidt
21+
22+
23+
Happy testing,
24+
The pytest Development Team

doc/en/example/nonpython.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,8 @@ interesting to just look at the collection tree::
8585
rootdir: $REGENDOC_TMPDIR/nonpython, inifile:
8686
collected 2 items
8787
<Package '$REGENDOC_TMPDIR/nonpython'>
88-
<Package '$REGENDOC_TMPDIR/nonpython'>
89-
<YamlFile 'test_simple.yml'>
90-
<YamlItem 'hello'>
91-
<YamlItem 'ok'>
88+
<YamlFile 'test_simple.yml'>
89+
<YamlItem 'hello'>
90+
<YamlItem 'ok'>
9291

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

0 commit comments

Comments
 (0)