Skip to content

Commit c1361b4

Browse files
authored
Merge pull request #5868 from blueyed/mm
Merge master into features
2 parents 9669413 + 409cc29 commit c1361b4

19 files changed

+72
-36
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,22 @@ with advance notice in the **Deprecations** section of releases.
1818
1919
.. towncrier release notes start
2020
21+
pytest 5.1.3 (2019-09-18)
22+
=========================
23+
24+
Bug Fixes
25+
---------
26+
27+
- `#5807 <https://github.com/pytest-dev/pytest/issues/5807>`_: Fix pypy3.6 (nightly) on windows.
28+
29+
30+
- `#5811 <https://github.com/pytest-dev/pytest/issues/5811>`_: Handle ``--fulltrace`` correctly with ``pytest.raises``.
31+
32+
33+
- `#5819 <https://github.com/pytest-dev/pytest/issues/5819>`_: Windows: Fix regression with conftest whose qualified name contains uppercase
34+
characters (introduced by #5792).
35+
36+
2137
pytest 5.1.2 (2019-08-30)
2238
=========================
2339

changelog/5807.bugfix.rst

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

changelog/5811.bugfix.rst

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

changelog/5819.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

doc/en/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ REGENDOC_ARGS := \
1616
--normalize "/[ \t]+\n/\n/" \
1717
--normalize "~\$$REGENDOC_TMPDIR~/home/sweet/project~" \
1818
--normalize "~/path/to/example~/home/sweet/project~" \
19-
--normalize "/in \d+.\d+s ==/in 0.12s ==/" \
19+
--normalize "/in \d.\d\ds/in 0.12s/" \
2020
--normalize "@/tmp/pytest-of-.*/pytest-\d+@PYTEST_TMPDIR@" \
2121
--normalize "@pytest-(\d+)\\.[^ ,]+@pytest-\1.x.y@" \
2222
--normalize "@(This is pytest version )(\d+)\\.[^ ,]+@\1\2.x.y@" \

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-5.1.3
910
release-5.1.2
1011
release-5.1.1
1112
release-5.1.0

doc/en/announce/release-5.1.3.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
pytest-5.1.3
2+
=======================================
3+
4+
pytest 5.1.3 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+
* Bruno Oliveira
16+
* Christian Neumüller
17+
* Daniel Hahler
18+
* Gene Wood
19+
* Hugo
20+
21+
22+
Happy testing,
23+
The pytest Development Team

doc/en/assert.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ the conftest file:
279279
E vals: 1 != 2
280280
281281
test_foocompare.py:12: AssertionError
282-
1 failed in 0.02s
282+
1 failed in 0.12s
283283
284284
.. _assert-details:
285285
.. _`assert introspection`:

doc/en/builtin.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ For information about fixtures, see :ref:`fixtures`. To see a complete list of a
160160
in python < 3.6 this is a pathlib2.Path
161161
162162
163-
no tests ran in 0.00s
163+
no tests ran in 0.12s
164164
165165
You can also interactively ask for help, e.g. by typing on the Python interactive prompt something like:
166166

doc/en/cache.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ If you run this for the first time you will see two failures:
7575
E Failed: bad luck
7676
7777
test_50.py:7: Failed
78-
2 failed, 48 passed in 0.07s
78+
2 failed, 48 passed in 0.12s
7979
8080
If you then run it with ``--lf``:
8181

@@ -230,7 +230,7 @@ If you run this command for the first time, you can see the print statement:
230230
test_caching.py:20: AssertionError
231231
-------------------------- Captured stdout setup ---------------------------
232232
running expensive computation...
233-
1 failed in 0.02s
233+
1 failed in 0.12s
234234
235235
If you run it a second time, the value will be retrieved from
236236
the cache and nothing will be printed:
@@ -249,7 +249,7 @@ the cache and nothing will be printed:
249249
E assert 42 == 23
250250
251251
test_caching.py:20: AssertionError
252-
1 failed in 0.02s
252+
1 failed in 0.12s
253253
254254
See the :ref:`cache-api` for more details.
255255

0 commit comments

Comments
 (0)