Skip to content

Commit b9c9876

Browse files
committed
Prepare release version 6.2.2
1 parent 8003fd2 commit b9c9876

File tree

7 files changed

+37
-5
lines changed

7 files changed

+37
-5
lines changed

changelog/8152.bugfix.rst

-1
This file was deleted.

changelog/8249.bugfix.rst

-1
This file was deleted.

doc/en/announce/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release announcements
66
:maxdepth: 2
77

88

9+
release-6.2.2
910
release-6.2.1
1011
release-6.2.0
1112
release-6.1.2

doc/en/announce/release-6.2.2.rst

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pytest-6.2.2
2+
=======================================
3+
4+
pytest 6.2.2 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/stable/changelog.html.
11+
12+
Thanks to all of the contributors to this release:
13+
14+
* Adam Johnson
15+
* Bruno Oliveira
16+
* Chris NeJame
17+
* Ran Benita
18+
19+
20+
Happy testing,
21+
The pytest Development Team

doc/en/changelog.rst

+12
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,18 @@ with advance notice in the **Deprecations** section of releases.
2828

2929
.. towncrier release notes start
3030
31+
pytest 6.2.2 (2021-01-25)
32+
=========================
33+
34+
Bug Fixes
35+
---------
36+
37+
- `#8152 <https://github.com/pytest-dev/pytest/issues/8152>`_: Fixed "(<Skipped instance>)" being shown as a skip reason in the verbose test summary line when the reason is empty.
38+
39+
40+
- `#8249 <https://github.com/pytest-dev/pytest/issues/8249>`_: Fix the ``faulthandler`` plugin for occasions when running with ``twisted.logger`` and using ``pytest --capture=no``.
41+
42+
3143
pytest 6.2.1 (2020-12-15)
3244
=========================
3345

doc/en/example/parametrize.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -637,13 +637,13 @@ Then run ``pytest`` with verbose mode and with only the ``basic`` marker:
637637
platform linux -- Python 3.x.y, pytest-6.x.y, py-1.x.y, pluggy-0.x.y -- $PYTHON_PREFIX/bin/python
638638
cachedir: $PYTHON_PREFIX/.pytest_cache
639639
rootdir: $REGENDOC_TMPDIR
640-
collecting ... collected 14 items / 11 deselected / 3 selected
640+
collecting ... collected 24 items / 21 deselected / 3 selected
641641
642642
test_pytest_param_example.py::test_eval[1+7-8] PASSED [ 33%]
643643
test_pytest_param_example.py::test_eval[basic_2+4] PASSED [ 66%]
644644
test_pytest_param_example.py::test_eval[basic_6*9] XFAIL [100%]
645645
646-
=============== 2 passed, 11 deselected, 1 xfailed in 0.12s ================
646+
=============== 2 passed, 21 deselected, 1 xfailed in 0.12s ================
647647
648648
As the result:
649649

doc/en/getting-started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Install ``pytest``
2828
.. code-block:: bash
2929
3030
$ pytest --version
31-
pytest 6.2.1
31+
pytest 6.2.2
3232
3333
.. _`simpletest`:
3434

0 commit comments

Comments
 (0)