Skip to content
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

Merge master into features #5788

Merged
merged 37 commits into from
Aug 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
f4a84a8
reword a parametrize example sentence
mei-li Aug 15, 2019
ac052a9
reword a parametrize example sentence (#5745)
nicoddemus Aug 15, 2019
d50198a
ci: add codecov.yml to turn comments off
blueyed Aug 15, 2019
44c10db
Merge pull request #5746 from blueyed/codecov-comment-off
blueyed Aug 15, 2019
4c37dca
.coveragerc: add report section
blueyed Aug 15, 2019
6ead01a
testing/python/fixtures.py: use NotImplementedError pattern
blueyed Aug 15, 2019
409d61b
Merge remote-tracking branch 'upstream/master' into release-5.1.0
nicoddemus Aug 15, 2019
ac3056c
Merge pull request #5747 from blueyed/coveragerc-report
asottile Aug 15, 2019
eaf7ce9
Preparing release version 5.1.0
nicoddemus Aug 16, 2019
8ccc017
Release 5.1.0 (#5748)
nicoddemus Aug 16, 2019
d9c4e64
Forward TRAVIS_REPO_SLUG env var for GH publish notes
nicoddemus Aug 16, 2019
c3a8e60
Merge pull request #5750 from nicoddemus/fix-gh-publish-notes
nicoddemus Aug 16, 2019
9f3bfe8
Fix TypeError when importing pytest on Python 3.5.0 and 3.5.1
bluetech Aug 16, 2019
05bfe73
Fix wrong location of assertion error with coverage.py
blueyed Aug 17, 2019
e5f4c47
test_assertion: minor cleanup
blueyed Aug 17, 2019
32dac18
Merge pull request #5755 from blueyed/fix-assert-location-with-coverage
blueyed Aug 17, 2019
1e3205e
ci: Travis: use 3.5.0
blueyed Aug 17, 2019
7c26a65
minor: make noqa comment more specific
blueyed Aug 17, 2019
6bf6265
Merge pull request #5760 from blueyed/F401
asottile Aug 18, 2019
a287aea
Docs: update tense
hugovk Aug 18, 2019
3076522
Merge pull request #5762 from pytest-dev/hugovk-patch-1
nicoddemus Aug 18, 2019
a7ede64
Move `@overload` to compat
asottile Aug 18, 2019
c049fd8
Remove cancelled training
The-Compiler Aug 19, 2019
cec2183
Add workaround for test_raises_cyclic_reference in Python 3.5.{0,1}
bluetech Aug 20, 2019
a7c2357
Pypy doesn't have sys.getrefcount(), so go back to gc
bluetech Aug 20, 2019
0e569fa
Merge pull request #5769 from The-Compiler/remove-training
RonnyPfannschmidt Aug 20, 2019
43eab91
Fix coverage
bluetech Aug 20, 2019
daff906
Merge pull request #5752 from bluetech/typing-py350-fix
asottile Aug 20, 2019
b135f5a
Preparing release version 5.1.1
asottile Aug 20, 2019
4265ab3
Merge pull request #5773 from asottile/release-5.1.1
asottile Aug 20, 2019
a4adf51
Fix TypeError
linchiwei123 Aug 24, 2019
691c706
Add test for #5782
nicoddemus Aug 24, 2019
1c7aeb6
Fix linting
nicoddemus Aug 24, 2019
9859d37
Merge pull request #5782 from linchiwei123/patch-1
nicoddemus Aug 24, 2019
01b9774
update doc
linchiwei123 Aug 25, 2019
0215bcd
update doc (#5784)
nicoddemus Aug 25, 2019
c28e428
Merge remote-tracking branch 'upstream/master' into mm
nicoddemus Aug 26, 2019
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
8 changes: 8 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,11 @@ source = src/
*/lib/python*/site-packages/
*/pypy*/site-packages/
*\Lib\site-packages\

[report]
skip_covered = True
show_missing = True
exclude_lines =
\#\s*pragma: no cover
^\s*raise NotImplementedError\b
^\s*return NotImplemented\b
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repos:
hooks:
- id: flake8
language_version: python3
additional_dependencies: [flake8-typing-imports]
additional_dependencies: [flake8-typing-imports==1.3.0]
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.4.0
hooks:
Expand Down
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
python: 'pypy3'

- env: TOXENV=py35-xdist
python: '3.5'
dist: trusty
python: '3.5.0'

# Coverage for:
# - pytester's LsofFdLeakChecker
Expand Down
167 changes: 167 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,173 @@ with advance notice in the **Deprecations** section of releases.

.. towncrier release notes start

pytest 5.1.1 (2019-08-20)
=========================

Bug Fixes
---------

- `#5751 <https://github.com/pytest-dev/pytest/issues/5751>`_: Fixed ``TypeError`` when importing pytest on Python 3.5.0 and 3.5.1.


pytest 5.1.0 (2019-08-15)
=========================

Removals
--------

- `#5180 <https://github.com/pytest-dev/pytest/issues/5180>`_: As per our policy, the following features have been deprecated in the 4.X series and are now
removed:

* ``Request.getfuncargvalue``: use ``Request.getfixturevalue`` instead.

* ``pytest.raises`` and ``pytest.warns`` no longer support strings as the second argument.

* ``message`` parameter of ``pytest.raises``.

* ``pytest.raises``, ``pytest.warns`` and ``ParameterSet.param`` now use native keyword-only
syntax. This might change the exception message from previous versions, but they still raise
``TypeError`` on unknown keyword arguments as before.

* ``pytest.config`` global variable.

* ``tmpdir_factory.ensuretemp`` method.

* ``pytest_logwarning`` hook.

* ``RemovedInPytest4Warning`` warning type.

* ``request`` is now a reserved name for fixtures.


For more information consult
`Deprecations and Removals <https://docs.pytest.org/en/latest/deprecations.html>`__ in the docs.


- `#5565 <https://github.com/pytest-dev/pytest/issues/5565>`_: Removed unused support code for `unittest2 <https://pypi.org/project/unittest2/>`__.

The ``unittest2`` backport module is no longer
necessary since Python 3.3+, and the small amount of code in pytest to support it also doesn't seem
to be used: after removed, all tests still pass unchanged.

Although our policy is to introduce a deprecation period before removing any features or support
for third party libraries, because this code is apparently not used
at all (even if ``unittest2`` is used by a test suite executed by pytest), it was decided to
remove it in this release.

If you experience a regression because of this, please
`file an issue <https://github.com/pytest-dev/pytest/issues/new>`__.


- `#5615 <https://github.com/pytest-dev/pytest/issues/5615>`_: ``pytest.fail``, ``pytest.xfail`` and ``pytest.skip`` no longer support bytes for the message argument.

This was supported for Python 2 where it was tempting to use ``"message"``
instead of ``u"message"``.

Python 3 code is unlikely to pass ``bytes`` to these functions. If you do,
please decode it to an ``str`` beforehand.



Features
--------

- `#5564 <https://github.com/pytest-dev/pytest/issues/5564>`_: New ``Config.invocation_args`` attribute containing the unchanged arguments passed to ``pytest.main()``.


- `#5576 <https://github.com/pytest-dev/pytest/issues/5576>`_: New `NUMBER <https://docs.pytest.org/en/latest/doctest.html#using-doctest-options>`__
option for doctests to ignore irrelevant differences in floating-point numbers.
Inspired by Sébastien Boisgérault's `numtest <https://github.com/boisgera/numtest>`__
extension for doctest.



Improvements
------------

- `#5471 <https://github.com/pytest-dev/pytest/issues/5471>`_: JUnit XML now includes a timestamp and hostname in the testsuite tag.


- `#5707 <https://github.com/pytest-dev/pytest/issues/5707>`_: Time taken to run the test suite now includes a human-readable representation when it takes over
60 seconds, for example::

===== 2 failed in 102.70s (0:01:42) =====



Bug Fixes
---------

- `#4344 <https://github.com/pytest-dev/pytest/issues/4344>`_: Fix RuntimeError/StopIteration when trying to collect package with "__init__.py" only.


- `#5115 <https://github.com/pytest-dev/pytest/issues/5115>`_: Warnings issued during ``pytest_configure`` are explicitly not treated as errors, even if configured as such, because it otherwise completely breaks pytest.


- `#5477 <https://github.com/pytest-dev/pytest/issues/5477>`_: The XML file produced by ``--junitxml`` now correctly contain a ``<testsuites>`` root element.


- `#5523 <https://github.com/pytest-dev/pytest/issues/5523>`_: Fixed using multiple short options together in the command-line (for example ``-vs``) in Python 3.8+.


- `#5524 <https://github.com/pytest-dev/pytest/issues/5524>`_: Fix issue where ``tmp_path`` and ``tmpdir`` would not remove directories containing files marked as read-only,
which could lead to pytest crashing when executed a second time with the ``--basetemp`` option.


- `#5537 <https://github.com/pytest-dev/pytest/issues/5537>`_: Replace ``importlib_metadata`` backport with ``importlib.metadata`` from the
standard library on Python 3.8+.


- `#5578 <https://github.com/pytest-dev/pytest/issues/5578>`_: Improve type checking for some exception-raising functions (``pytest.xfail``, ``pytest.skip``, etc)
so they provide better error messages when users meant to use marks (for example ``@pytest.xfail``
instead of ``@pytest.mark.xfail``).


- `#5606 <https://github.com/pytest-dev/pytest/issues/5606>`_: Fixed internal error when test functions were patched with objects that cannot be compared
for truth values against others, like ``numpy`` arrays.


- `#5634 <https://github.com/pytest-dev/pytest/issues/5634>`_: ``pytest.exit`` is now correctly handled in ``unittest`` cases.
This makes ``unittest`` cases handle ``quit`` from pytest's pdb correctly.


- `#5650 <https://github.com/pytest-dev/pytest/issues/5650>`_: Improved output when parsing an ini configuration file fails.


- `#5701 <https://github.com/pytest-dev/pytest/issues/5701>`_: Fix collection of ``staticmethod`` objects defined with ``functools.partial``.


- `#5734 <https://github.com/pytest-dev/pytest/issues/5734>`_: Skip async generator test functions, and update the warning message to refer to ``async def`` functions.



Improved Documentation
----------------------

- `#5669 <https://github.com/pytest-dev/pytest/issues/5669>`_: Add docstring for ``Testdir.copy_example``.



Trivial/Internal Changes
------------------------

- `#5095 <https://github.com/pytest-dev/pytest/issues/5095>`_: XML files of the ``xunit2`` family are now validated against the schema by pytest's own test suite
to avoid future regressions.


- `#5516 <https://github.com/pytest-dev/pytest/issues/5516>`_: Cache node splitting function which can improve collection performance in very large test suites.


- `#5603 <https://github.com/pytest-dev/pytest/issues/5603>`_: Simplified internal ``SafeRepr`` class and removed some dead code.


- `#5664 <https://github.com/pytest-dev/pytest/issues/5664>`_: When invoking pytest's own testsuite with ``PYTHONDONTWRITEBYTECODE=1``,
the ``test_xfail_handling`` test no longer fails.


- `#5684 <https://github.com/pytest-dev/pytest/issues/5684>`_: Replace manual handling of ``OSError.errno`` in the codebase by new ``OSError`` subclasses (``PermissionError``, ``FileNotFoundError``, etc.).


pytest 5.0.1 (2019-07-04)
=========================

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

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/5095.trivial.rst

This file was deleted.

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

This file was deleted.

26 changes: 0 additions & 26 deletions changelog/5180.removal.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/5471.improvement.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/5524.bugfix.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/5537.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/5564.feature.rst

This file was deleted.

13 changes: 0 additions & 13 deletions changelog/5565.removal.rst

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/5576.feature.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog/5578.bugfix.rst

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/5606.bugfix.rst

This file was deleted.

7 changes: 0 additions & 7 deletions changelog/5615.removal.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/5634.bugfix.rst

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions changelog/5664.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/5669.doc.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

4 changes: 0 additions & 4 deletions changelog/5707.improvement.rst

This file was deleted.

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

This file was deleted.

1 change: 1 addition & 0 deletions changelog/5782.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix decoding error when printing an error response from ``--pastebin``.
7 changes: 7 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
coverage:
status:
project: true
patch: true
changes: true

comment: off
2 changes: 2 additions & 0 deletions doc/en/announce/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Release announcements
:maxdepth: 2


release-5.1.1
release-5.1.0
release-5.0.1
release-5.0.0
release-4.6.5
Expand Down
56 changes: 56 additions & 0 deletions doc/en/announce/release-5.1.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
pytest-5.1.0
=======================================

The pytest team is proud to announce the 5.1.0 release!

pytest is a mature Python testing tool with more than a 2000 tests
against itself, passing on many different interpreters and platforms.

This release contains a number of bugs fixes and improvements, so users are encouraged
to take a look at the CHANGELOG:

https://docs.pytest.org/en/latest/changelog.html

For complete documentation, please visit:

https://docs.pytest.org/en/latest/

As usual, you can upgrade from pypi via:

pip install -U pytest

Thanks to all who contributed to this release, among them:

* Albert Tugushev
* Alexey Zankevich
* Anthony Sottile
* Bruno Oliveira
* Daniel Hahler
* David Röthlisberger
* Florian Bruhin
* Ilya Stepin
* Jon Dufresne
* Kaiqi
* Max R
* Miro Hrončok
* Oliver Bestwalter
* Ran Benita
* Ronny Pfannschmidt
* Samuel Searles-Bryant
* Semen Zhydenko
* Steffen Schroeder
* Thomas Grainger
* Tim Hoffmann
* William Woodall
* Wojtek Erbetowski
* Xixi Zhao
* Yash Todi
* boris
* dmitry.dygalo
* helloocc
* martbln
* mei-li


Happy testing,
The Pytest Development Team
Loading