lavr / python-emails

Modern python library for emails
http://python-emails.readthedocs.org
Other
400 stars 54 forks source link

Pin pytest to latest version 3.2.1 #110

Closed pyup-bot closed 7 years ago

pyup-bot commented 7 years ago

pytest is not pinned to a specific version.

I'm pinning it to the latest version 3.2.1 for now.

These links might come in handy: PyPI | Changelog | Repo | Homepage

Changelog

3.2.1

=========================

Bug Fixes

  • Fixed small terminal glitch when collecting a single test item. (2579 <https://github.com/pytest-dev/pytest/issues/2579>_)

  • Correctly consider / as the file separator to automatically mark plugin files for rewrite on Windows. (2591 <https://github.com/pytest- dev/pytest/issues/2591>_)

  • Properly escape test names when setting PYTEST_CURRENT_TEST environment variable. (2644 <https://github.com/pytest-dev/pytest/issues/2644>_)

  • Fix error on Windows and Python 3.6+ when sys.stdout has been replaced with a stream-like object which does not implement the full io module buffer protocol. In particular this affects pytest-xdist users on the aforementioned platform. (2666 <https://github.com/pytest- dev/pytest/issues/2666>_)

Improved Documentation

  • Explicitly document which pytest features work with unittest. (2626 <https://github.com/pytest-dev/pytest/issues/2626>_)

3.2.0

=========================

Deprecations and Removals

  • pytest.approx no longer supports >, >=, < and <= operators to avoid surprising/inconsistent behavior. See the docs <https://docs.pytest.org/en/latest/builtin.htmlpytest.approx> for more information. (2003 <https://github.com/pytest-dev/pytest/issues/2003>)

  • All old-style specific behavior in current classes in the pytest's API is considered deprecated at this point and will be removed in a future release. This affects Python 2 users only and in rare situations. (2147 <https://github.com/pytest-dev/pytest/issues/2147>_)

  • A deprecation warning is now raised when using marks for parameters in pytest.mark.parametrize. Use pytest.param to apply marks to parameters instead. (2427 <https://github.com/pytest-dev/pytest/issues/2427>_)

Features

  • Add support for numpy arrays (and dicts) to approx. (1994 <https://github.com/pytest-dev/pytest/issues/1994>_)

  • Now test function objects have a pytestmark attribute containing a list of marks applied directly to the test function, as opposed to marks inherited from parent classes or modules. (2516 <https://github.com/pytest- dev/pytest/issues/2516>_)

  • Collection ignores local virtualenvs by default; --collect-in-virtualenv overrides this behavior. (2518 <https://github.com/pytest- dev/pytest/issues/2518>_)

  • Allow class methods decorated as staticmethod to be candidates for collection as a test function. (Only for Python 2.7 and above. Python 2.6 will still ignore static methods.) (2528 <https://github.com/pytest- dev/pytest/issues/2528>_)

  • Introduce mark.with_args in order to allow passing functions/classes as sole argument to marks. (2540 <https://github.com/pytest- dev/pytest/issues/2540>_)

  • New cache_dir ini option: sets the directory where the contents of the cache plugin are stored. Directory may be relative or absolute path: if relative path, then directory is created relative to rootdir, otherwise it is used as is. Additionally path may contain environment variables which are expanded during runtime. (2543 <https://github.com/pytest-dev/pytest/issues/2543>_)

  • Introduce the PYTEST_CURRENT_TEST environment variable that is set with the nodeid and stage (setup, call and teardown) of the test being currently executed. See the documentation <https://docs.pytest.org/en/latest/example/simple.htmlpytest-current-test- environment-variable> for more info. (2583 <https://github.com/pytest- dev/pytest/issues/2583>)

  • Introduced pytest.mark.filterwarnings mark which allows overwriting the warnings filter on a per test, class or module level. See the docs <https://docs.pytest.org/en/latest/warnings.htmlpytest-mark- filterwarnings> for more information. (2598 <https://github.com/pytest- dev/pytest/issues/2598>)

  • --last-failed now remembers forever when a test has failed and only forgets it if it passes again. This makes it easy to fix a test suite by selectively running files and fixing tests incrementally. (2621 <https://github.com/pytest-dev/pytest/issues/2621>_)

  • New pytest_report_collectionfinish hook which allows plugins to add messages to the terminal reporting after collection has been finished successfully. (2622 <https://github.com/pytest-dev/pytest/issues/2622>_)

  • Added support for PEP-415's <https://www.python.org/dev/peps/pep-0415/>_ Exception.__suppress_context__. Now if a raise exception from None is caught by pytest, pytest will no longer chain the context in the test report. The behavior now matches Python's traceback behavior. (2631 <https://github.com/pytest-dev/pytest/issues/2631>_)

  • Exceptions raised by pytest.fail, pytest.skip and pytest.xfail now subclass BaseException, making them harder to be caught unintentionally by normal code. (580 <https://github.com/pytest-dev/pytest/issues/580>_)

Bug Fixes

  • Set stdin to a closed PIPE in pytester.py.Testdir.popen() for avoid unwanted interactive pdb (2023 <https://github.com/pytest- dev/pytest/issues/2023>_)

  • Add missing encoding attribute to sys.std* streams when using capsys capture mode. (2375 <https://github.com/pytest- dev/pytest/issues/2375>_)

  • Fix terminal color changing to black on Windows if colorama is imported in a conftest.py file. (2510 <https://github.com/pytest- dev/pytest/issues/2510>_)

  • Fix line number when reporting summary of skipped tests. (2548 <https://github.com/pytest-dev/pytest/issues/2548>_)

  • capture: ensure that EncodedFile.name is a string. (2555 <https://github.com/pytest-dev/pytest/issues/2555>_)

  • The options --fixtures and --fixtures-per-test will now keep indentation within docstrings. (2574 <https://github.com/pytest- dev/pytest/issues/2574>_)

  • doctests line numbers are now reported correctly, fixing pytest-sugar122 <https://github.com/Frozenball/pytest-sugar/issues/122>. (2610 <https://github.com/pytest-dev/pytest/issues/2610>)

  • Fix non-determinism in order of fixture collection. Adds new dependency (ordereddict) for Python 2.6. (920 <https://github.com/pytest- dev/pytest/issues/920>_)

Improved Documentation

  • Clarify pytest_configure hook call order. (2539 <https://github.com/pytest-dev/pytest/issues/2539>_)

  • Extend documentation for testing plugin code with the pytester plugin. (971 <https://github.com/pytest-dev/pytest/issues/971>_)

Trivial/Internal Changes

  • Update help message for --strict to make it clear it only deals with unregistered markers, not warnings. (2444 <https://github.com/pytest- dev/pytest/issues/2444>_)

  • Internal code move: move code for pytest.approx/pytest.raises to own files in order to cut down the size of python.py (2489 <https://github.com/pytest- dev/pytest/issues/2489>_)

  • Renamed the utility function _pytest.compat._escape_strings to _ascii_escaped to better communicate the function's purpose. (2533 <https://github.com/pytest-dev/pytest/issues/2533>_)

  • Improve error message for CollectError with skip/skipif. (2546 <https://github.com/pytest-dev/pytest/issues/2546>_)

  • Emit warning about yield tests being deprecated only once per generator. (2562 <https://github.com/pytest-dev/pytest/issues/2562>_)

  • Ensure final collected line doesn't include artifacts of previous write. (2571 <https://github.com/pytest-dev/pytest/issues/2571>_)

  • Fixed all flake8 errors and warnings. (2581 <https://github.com/pytest- dev/pytest/issues/2581>_)

  • Added fix-lint tox environment to run automatic pep8 fixes on the code. (2582 <https://github.com/pytest-dev/pytest/issues/2582>_)

  • Turn warnings into errors in pytest's own test suite in order to catch regressions due to deprecations more promptly. (2588 <https://github.com/pytest-dev/pytest/issues/2588>_)

  • Show multiple issue links in CHANGELOG entries. (2620 <https://github.com/pytest-dev/pytest/issues/2620>_)

3.1.3

=========================

Bug Fixes

  • Fix decode error in Python 2 for doctests in docstrings. (2434 <https://github.com/pytest-dev/pytest/issues/2434>_)

  • Exceptions raised during teardown by finalizers are now suppressed until all finalizers are called, with the initial exception reraised. (2440 <https://github.com/pytest-dev/pytest/issues/2440>_)

  • Fix incorrect "collected items" report when specifying tests on the command- line. (2464 <https://github.com/pytest-dev/pytest/issues/2464>_)

  • deprecated_call in context-manager form now captures deprecation warnings even if the same warning has already been raised. Also, deprecated_call will always produce the same error message (previously it would produce different messages in context-manager vs. function-call mode). (2469 <https://github.com/pytest-dev/pytest/issues/2469>_)

  • Fix issue where paths collected by pytest could have triple leading / characters. (2475 <https://github.com/pytest-dev/pytest/issues/2475>_)

  • Fix internal error when trying to detect the start of a recursive traceback. (2486 <https://github.com/pytest-dev/pytest/issues/2486>_)

Improved Documentation

  • Explicitly state for which hooks the calls stop after the first non-None result. (2493 <https://github.com/pytest-dev/pytest/issues/2493>_)

Trivial/Internal Changes

  • Create invoke tasks for updating the vendored packages. (2474 <https://github.com/pytest-dev/pytest/issues/2474>_)

  • Update copyright dates in LICENSE, README.rst and in the documentation. (2499 <https://github.com/pytest-dev/pytest/issues/2499>_)

3.1.2

=========================

Bug Fixes

  • Required options added via pytest_addoption will no longer prevent using --help without passing them. (1999)

  • Respect python_files in assertion rewriting. (2121)

  • Fix recursion error detection when frames in the traceback contain objects that can't be compared (like numpy arrays). (2459)

  • UnicodeWarning is issued from the internal pytest warnings plugin only when the message contains non-ascii unicode (Python 2 only). (2463)

  • Added a workaround for Python 3.6 WindowsConsoleIO breaking due to Pytests's FDCapture. Other code using console handles might still be affected by the very same issue and might require further workarounds/fixes, i.e. colorama. (2467)

Improved Documentation

  • Fix internal API links to pluggy objects. (2331)

  • Make it clear that pytest.xfail stops test execution at the calling point and improve overall flow of the skipping docs. (810)

3.1.1

=========================

Bug Fixes

  • pytest warning capture no longer overrides existing warning filters. The previous behaviour would override all filters and caused regressions in test suites which configure warning filters to match their needs. Note that as a side-effect of this is that DeprecationWarning and PendingDeprecationWarning are no longer shown by default. (2430)

  • Fix issue with non-ascii contents in doctest text files. (2434)

  • Fix encoding errors for unicode warnings in Python 2. (2436)

  • pytest.deprecated_call now captures PendingDeprecationWarning in context manager form. (2441)

Improved Documentation

  • Addition of towncrier for changelog management. (2390)

3.1.0

==================

New Features

  • The pytest-warnings plugin has been integrated into the core and now pytest automatically captures and displays warnings at the end of the test session.

    .. warning::

    This feature may disrupt test suites which apply and treat warnings themselves, and can be disabled in your pytest.ini:

    .. code-block:: ini

    [pytest] addopts = -p no:warnings

    See the warnings documentation page <https://docs.pytest.org/en/latest/warnings.html>_ for more information.

    Thanks nicoddemus_ for the PR.

  • Added junit_suite_name ini option to specify root <testsuite> name for JUnit XML reports (533_).

  • Added an ini option doctest_encoding to specify which encoding to use for doctest files. Thanks wheerd for the PR (2101).

  • pytest.warns now checks for subclass relationship rather than class equality. Thanks lesteve for the PR (2166)

  • pytest.raises now asserts that the error message matches a text or regex with the match keyword argument. Thanks Kriechi_ for the PR.

  • pytest.param can be used to declare test parameter sets with marks and test ids. Thanks RonnyPfannschmidt_ for the PR.

Changes

  • remove all internal uses of pytestnamespace hooks, this is to prepare the removal of preloadconfig in pytest 4.0 Thanks to RonnyPfannschmidt for the PR.

  • pytest now warns when a callable ids raises in a parametrized test. Thanks fogo_ for the PR.

  • It is now possible to skip test classes from being collected by setting a __test__ attribute to False in the class body (2007). Thanks to syre for the report and lwm_ for the PR.

  • Change junitxml.py to produce reports that comply with Junitxml schema. If the same test fails with failure in call and then errors in teardown we split testcase element into two, one containing the error and the other the failure. (2228) Thanks to kkoukiou for the PR.

  • Testcase reports with a url attribute will now properly write this to junitxml. Thanks fushi for the PR (1874).

  • Remove common items from dict comparision output when verbosity=1. Also update the truncation message to make it clearer that pytest truncates all assertion messages if verbosity < 2 (1512). Thanks mattduck for the PR

  • --pdbcls no longer implies --pdb. This makes it possible to use addopts=--pdbcls=module.SomeClass on pytest.ini. Thanks davidszotten for the PR (1952).

  • fix 2013_: turn RecordedWarning into namedtuple, to give it a comprehensible repr while preventing unwarranted modification.

  • fix 2208_: ensure a iteration limit for _pytest.compat.get_realfunc. Thanks RonnyPfannschmidt for the report and PR.

  • Hooks are now verified after collection is complete, rather than right after loading installed plugins. This makes it easy to write hooks for plugins which will be loaded during collection, for example using the pytest_plugins special variable (1821). Thanks nicoddemus for the PR.

  • Modify pytest_make_parametrize_id() hook to accept argname as an additional parameter. Thanks unsignedint_ for the PR.

  • Add venv to the default norecursedirs setting. Thanks The-Compiler_ for the PR.

  • PluginManager.import_plugin now accepts unicode plugin names in Python 2. Thanks reutsharabani_ for the PR.

  • fix 2308: When using both --lf and --ff, only the last failed tests are run. Thanks ojii for the PR.

  • Replace minor/patch level version numbers in the documentation with placeholders. This significantly reduces change-noise as different contributors regnerate the documentation on different platforms. Thanks RonnyPfannschmidt_ for the PR.

  • fix 2391_: consider pytestplugins on all plugin modules Thanks RonnyPfannschmidt for the PR.

Bug Fixes

  • Fix AttributeError on sys.stdout.buffer / sys.stderr.buffer while using capsys fixture in python 3. (1407). Thanks to asottile.

  • Change capture.py's DontReadFromInput class to throw io.UnsupportedOperation errors rather than ValueErrors in the fileno method (2276). Thanks metasyn and vlad-dragos_ for the PR.

  • Fix exception formatting while importing modules when the exception message contains non-ascii characters (2336). Thanks fabioz for the report and nicoddemus_ for the PR.

  • Added documentation related to issue (1937) Thanks skylarjhdownes for the PR.

  • Allow collecting files with any file extension as Python modules (2369). Thanks Kodiologist for the PR.

  • Show the correct error message when collect "parametrize" func with wrong args (2383). Thanks The-Compiler for the report and robin0371_ for the PR.

.. _davidszotten: https://github.com/davidszotten .. _fabioz: https://github.com/fabioz .. _fogo: https://github.com/fogo .. _fushi: https://github.com/fushi .. _Kodiologist: https://github.com/Kodiologist .. _Kriechi: https://github.com/Kriechi .. _mandeep: https://github.com/mandeep .. _mattduck: https://github.com/mattduck .. _metasyn: https://github.com/metasyn .. _MichalTHEDUDE: https://github.com/MichalTHEDUDE .. _ojii: https://github.com/ojii .. _reutsharabani: https://github.com/reutsharabani .. _robin0371: https://github.com/robin0371 .. _skylarjhdownes: https://github.com/skylarjhdownes .. _unsignedint: https://github.com/unsignedint .. _wheerd: https://github.com/wheerd

.. _1407: https://github.com/pytest-dev/pytest/issues/1407 .. _1512: https://github.com/pytest-dev/pytest/issues/1512 .. _1821: https://github.com/pytest-dev/pytest/issues/1821 .. _1874: https://github.com/pytest-dev/pytest/pull/1874 .. _1937: https://github.com/pytest-dev/pytest/issues/1937 .. _1952: https://github.com/pytest-dev/pytest/pull/1952 .. _2007: https://github.com/pytest-dev/pytest/issues/2007 .. _2013: https://github.com/pytest-dev/pytest/issues/2013 .. _2101: https://github.com/pytest-dev/pytest/pull/2101 .. _2166: https://github.com/pytest-dev/pytest/pull/2166 .. _2208: https://github.com/pytest-dev/pytest/issues/2208 .. _2228: https://github.com/pytest-dev/pytest/issues/2228 .. _2276: https://github.com/pytest-dev/pytest/issues/2276 .. _2308: https://github.com/pytest-dev/pytest/issues/2308 .. _2336: https://github.com/pytest-dev/pytest/issues/2336 .. _2369: https://github.com/pytest-dev/pytest/issues/2369 .. _2383: https://github.com/pytest-dev/pytest/issues/2383 .. _2391: https://github.com/pytest-dev/pytest/issues/2391 .. _533: https://github.com/pytest-dev/pytest/issues/533

3.0.7

==================

  • Fix issue in assertion rewriting breaking due to modules silently discarding other modules when importing fails Notably, importing the anydbm module is fixed. (2248). Thanks pfhayes for the PR.

  • junitxml: Fix problematic case where system-out tag occured twice per testcase element in the XML report. Thanks kkoukiou_ for the PR.

  • Fix regression, pytest now skips unittest correctly if run with --pdb (2137). Thanks to gst for the report and mbyt_ for the PR.

  • Ignore exceptions raised from descriptors (e.g. properties) during Python test collection (2234). Thanks to bluetech.

  • --override-ini now correctly overrides some fundamental options like python_files (2238). Thanks sirex for the report and nicoddemus_ for the PR.

  • Replace raise StopIteration usages in the code by simple returns to finish generators, in accordance to PEP-479 (2160). Thanks tgoodlet for the report and nicoddemus for the PR.

  • Fix internal errors when an unprintable AssertionError is raised inside a test. Thanks omerhadari_ for the PR.

  • Skipping plugin now also works with test items generated by custom collectors (2231). Thanks to vidartf.

  • Fix trailing whitespace in console output if no .ini file presented (2281). Thanks fbjorn for the PR.

  • Conditionless xfail markers no longer rely on the underlying test item being an instance of PyobjMixin, and can therefore apply to tests not collected by the built-in python test collector. Thanks barneygale_ for the PR.

.. _pfhayes: https://github.com/pfhayes .. _bluetech: https://github.com/bluetech .. _gst: https://github.com/gst .. _sirex: https://github.com/sirex .. _vidartf: https://github.com/vidartf .. _kkoukiou: https://github.com/KKoukiou .. _omerhadari: https://github.com/omerhadari .. _fbjorn: https://github.com/fbjorn

.. _2248: https://github.com/pytest-dev/pytest/issues/2248 .. _2137: https://github.com/pytest-dev/pytest/issues/2137 .. _2160: https://github.com/pytest-dev/pytest/issues/2160 .. _2231: https://github.com/pytest-dev/pytest/issues/2231 .. _2234: https://github.com/pytest-dev/pytest/issues/2234 .. _2238: https://github.com/pytest-dev/pytest/issues/2238 .. _2281: https://github.com/pytest-dev/pytest/issues/2281

.. _PEP-479: https://www.python.org/dev/peps/pep-0479/

3.0.6

==================

  • pytest no longer generates PendingDeprecationWarning from its own operations, which was introduced by mistake in version 3.0.5 (2118). Thanks to nicoddemus for the report and RonnyPfannschmidt_ for the PR.

  • pytest no longer recognizes coroutine functions as yield tests (2129). Thanks to malinoff for the PR.

  • Plugins loaded by the PYTEST_PLUGINS environment variable are now automatically considered for assertion rewriting (2185). Thanks nicoddemus for the PR.

  • Improve error message when pytest.warns fails (2150). The type(s) of the expected warnings and the list of caught warnings is added to the error message. Thanks lesteve for the PR.

  • Fix pytester internal plugin to work correctly with latest versions of zope.interface (1989). Thanks nicoddemus for the PR.

  • Assert statements of the pytester plugin again benefit from assertion rewriting (1920). Thanks RonnyPfannschmidt for the report and nicoddemus_ for the PR.

  • Specifying tests with colons like test_foo.py::test_bar for tests in subdirectories with ini configuration files now uses the correct ini file (2148). Thanks pelme.

  • Fail testdir.runpytest().assert_outcomes() explicitly if the pytest terminal output it relies on is missing. Thanks to eli-b_ for the PR.

.. _barneygale: https://github.com/barneygale .. _lesteve: https://github.com/lesteve .. _malinoff: https://github.com/malinoff .. _pelme: https://github.com/pelme .. _eli-b: https://github.com/eli-b

.. _2118: https://github.com/pytest-dev/pytest/issues/2118

.. _1989: https://github.com/pytest-dev/pytest/issues/1989 .. _1920: https://github.com/pytest-dev/pytest/issues/1920 .. _2129: https://github.com/pytest-dev/pytest/issues/2129 .. _2148: https://github.com/pytest-dev/pytest/issues/2148 .. _2150: https://github.com/pytest-dev/pytest/issues/2150 .. _2185: https://github.com/pytest-dev/pytest/issues/2185

3.0.5

==================

  • Add warning when not passing option=value correctly to -o/--override-ini (2105). Also improved the help documentation. Thanks to mbukatov for the report and lwm_ for the PR.

  • Now --confcutdir and --junit-xml are properly validated if they are directories and filenames, respectively (2089 and 2078). Thanks to lwm_ for the PR.

  • Add hint to error message hinting possible missing __init__.py (478). Thanks DuncanBetts.

  • More accurately describe when fixture finalization occurs in documentation (687). Thanks DuncanBetts.

  • Provide :ref: targets for recwarn.rst so we can use intersphinx referencing. Thanks to dupuy for the report and lwm for the PR.

  • In Python 2, use a simple +- ASCII string in the string representation of pytest.approx (for example &quot;4 +- 4.0e-06&quot;) because it is brittle to handle that in different contexts and representations internally in pytest which can result in bugs such as 2111. In Python 3, the representation still uses ± (for example 4 ± 4.0e-06). Thanks kerrick-lyft for the report and nicoddemus_ for the PR.

  • Using item.Function, item.Module, etc., is now issuing deprecation warnings, prefer pytest.Function, pytest.Module, etc., instead (2034). Thanks nmundar for the PR.

  • Fix error message using approx with complex numbers (2082). Thanks adler-j for the report and nicoddemus_ for the PR.

  • Fixed false-positives warnings from assertion rewrite hook for modules imported more than once by the pytest_plugins mechanism. Thanks nicoddemus_ for the PR.

  • Remove an internal cache which could cause hooks from conftest.py files in sub-directories to be called in other directories incorrectly (2016). Thanks d-b-w for the report and nicoddemus_ for the PR.

  • Remove internal code meant to support earlier Python 3 versions that produced the side effect of leaving None in sys.modules when expressions were evaluated by pytest (for example passing a condition as a string to pytest.mark.skipif)(2103). Thanks jaraco for the report and nicoddemus_ for the PR.

  • Cope gracefully with a .pyc file with no matching .py file (2038). Thanks nedbat.

.. _syre: https://github.com/syre .. _adler-j: https://github.com/adler-j .. _d-b-w: https://bitbucket.org/d-b-w/ .. _DuncanBetts: https://github.com/DuncanBetts .. _dupuy: https://bitbucket.org/dupuy/ .. _kerrick-lyft: https://github.com/kerrick-lyft .. _lwm: https://github.com/lwm .. _mbukatov: https://github.com/mbukatov .. _nedbat: https://github.com/nedbat .. _nmundar: https://github.com/nmundar

.. _2016: https://github.com/pytest-dev/pytest/issues/2016 .. _2034: https://github.com/pytest-dev/pytest/issues/2034 .. _2038: https://github.com/pytest-dev/pytest/issues/2038 .. _2078: https://github.com/pytest-dev/pytest/issues/2078 .. _2082: https://github.com/pytest-dev/pytest/issues/2082 .. _2089: https://github.com/pytest-dev/pytest/issues/2089 .. _2103: https://github.com/pytest-dev/pytest/issues/2103 .. _2105: https://github.com/pytest-dev/pytest/issues/2105 .. _2111: https://github.com/pytest-dev/pytest/issues/2111 .. _478: https://github.com/pytest-dev/pytest/issues/478 .. _687: https://github.com/pytest-dev/pytest/issues/687

3.0.4

==================

  • Import errors when collecting test modules now display the full traceback (1976). Thanks cwitty for the report and nicoddemus_ for the PR.

  • Fix confusing command-line help message for custom options with two or more metavar properties (2004). Thanks okulynyak and davehunt for the report and nicoddemus for the PR.

  • When loading plugins, import errors which contain non-ascii messages are now properly handled in Python 2 (1998). Thanks nicoddemus for the PR.

  • Fixed cyclic reference when pytest.raises is used in context-manager form (1965_). Also as a result of this fix, sys.exc_info() is left empty in both context-manager and function call usages. Previously, sys.exc_info would contain the exception caught by the context manager, even when the expected exception occurred. Thanks MSeifert04_ for the report and the PR.

  • Fixed false-positives warnings from assertion rewrite hook for modules that were rewritten but were later marked explicitly by pytest.register_assert_rewrite or implicitly as a plugin (2005). Thanks RonnyPfannschmidt for the report and nicoddemus_ for the PR.

  • Report teardown output on test failure (442). Thanks matclab for the PR.

  • Fix teardown error message in generated xUnit XML. Thanks gdyuldin_ for the PR.

  • Properly handle exceptions in multiprocessing tasks (1984). Thanks adborden for the report and nicoddemus_ for the PR.

  • Clean up unittest TestCase objects after tests are complete (1649_). Thanks d_b_w_ for the report and PR.

.. _adborden: https://github.com/adborden .. _cwitty: https://github.com/cwitty .. _d_b_w: https://github.com/d_b_w .. _gdyuldin: https://github.com/gdyuldin .. _matclab: https://github.com/matclab .. _MSeifert04: https://github.com/MSeifert04 .. _okulynyak: https://github.com/okulynyak

.. _442: https://github.com/pytest-dev/pytest/issues/442 .. _1965: https://github.com/pytest-dev/pytest/issues/1965 .. _1976: https://github.com/pytest-dev/pytest/issues/1976 .. _1984: https://github.com/pytest-dev/pytest/issues/1984 .. _1998: https://github.com/pytest-dev/pytest/issues/1998 .. _2004: https://github.com/pytest-dev/pytest/issues/2004 .. _2005: https://github.com/pytest-dev/pytest/issues/2005 .. _1649: https://github.com/pytest-dev/pytest/issues/1649

3.0.3

==================

  • The ids argument to parametrize again accepts unicode strings in Python 2 (1905). Thanks philpep for the report and nicoddemus_ for the PR.

  • Assertions are now being rewritten for plugins in development mode (pip install -e) (1934). Thanks nicoddemus for the PR.

  • Fix pkgresources import error in Jython projects (1853). Thanks raquel-ucl_ for the PR.

  • Got rid of AttributeError: &#39;Module&#39; object has no attribute &#39;_obj&#39; exception in Python 3 (1944). Thanks axil for the PR.

  • Explain a bad scope value passed to fixture declarations or a MetaFunc.parametrize() call. Thanks tgoodlet_ for the PR.

  • This version includes pluggy-0.4.0, which correctly handles VersionConflict errors in plugins (704). Thanks nicoddemus for the PR.

.. _philpep: https://github.com/philpep .. _raquel-ucl: https://github.com/raquel-ucl .. _axil: https://github.com/axil .. _tgoodlet: https://github.com/tgoodlet .. _vlad-dragos: https://github.com/vlad-dragos

.. _1853: https://github.com/pytest-dev/pytest/issues/1853 .. _1905: https://github.com/pytest-dev/pytest/issues/1905 .. _1934: https://github.com/pytest-dev/pytest/issues/1934 .. _1944: https://github.com/pytest-dev/pytest/issues/1944 .. _704: https://github.com/pytest-dev/pytest/issues/704

3.0.2

==================

  • Improve error message when passing non-string ids to pytest.mark.parametrize (1857). Thanks okken for the report and nicoddemus_ for the PR.

  • Add buffer attribute to stdin stub class pytest.capture.DontReadFromInput Thanks joguSD_ for the PR.

  • Fix UnicodeEncodeError when string comparison with unicode has failed. (1864) Thanks AiOO for the PR.

  • pytest_plugins is now handled correctly if defined as a string (as opposed as a sequence of strings) when modules are considered for assertion rewriting. Due to this bug, much more modules were being rewritten than necessary if a test suite uses pytest_plugins to load internal plugins (1888). Thanks jaraco for the report and nicoddemus for the PR (1891).

  • Do not call tearDown and cleanups when running tests from unittest.TestCase subclasses with --pdb enabled. This allows proper post mortem debugging for all applications which have significant logic in their tearDown machinery (1890). Thanks mbyt for the PR.

  • Fix use of deprecated getfuncargvalue method in the internal doctest plugin. Thanks ViviCoder for the report (1898).

.. _joguSD: https://github.com/joguSD .. _AiOO: https://github.com/AiOO .. _mbyt: https://github.com/mbyt .. _ViviCoder: https://github.com/ViviCoder

.. _1857: https://github.com/pytest-dev/pytest/issues/1857 .. _1864: https://github.com/pytest-dev/pytest/issues/1864 .. _1888: https://github.com/pytest-dev/pytest/issues/1888 .. _1891: https://github.com/pytest-dev/pytest/pull/1891 .. _1890: https://github.com/pytest-dev/pytest/issues/1890 .. _1898: https://github.com/pytest-dev/pytest/issues/1898

3.0.1

==================

  • Fix regression when importorskip is used at module level (1822). Thanks jaraco and The-Compiler for the report and nicoddemus for the PR.

  • Fix parametrization scope when session fixtures are used in conjunction with normal parameters in the same call (1832). Thanks The-Compiler for the report, Kingdread and nicoddemus for the PR.

  • Fix internal error when parametrizing tests or fixtures using an empty ids argument (1849). Thanks OPpuolitaival for the report and nicoddemus_ for the PR.

  • Fix loader error when running pytest embedded in a zipfile. Thanks mbachry_ for the PR.

.. _Kingdread: https://github.com/Kingdread .. _mbachry: https://github.com/mbachry .. _OPpuolitaival: https://github.com/OPpuolitaival

.. _1822: https://github.com/pytest-dev/pytest/issues/1822 .. _1832: https://github.com/pytest-dev/pytest/issues/1832 .. _1849: https://github.com/pytest-dev/pytest/issues/1849

3.0.0

==================

Incompatible changes

A number of incompatible changes were made in this release, with the intent of removing features deprecated for a long time or change existing behaviors in order to make them less surprising/more useful.

  • Reinterpretation mode has now been removed. Only plain and rewrite mode are available, consequently the --assert=reinterp option is no longer available. This also means files imported from plugins or conftest.py will not benefit from improved assertions by default, you should use pytest.register_assert_rewrite() to explicitly turn on assertion rewriting for those files. Thanks flub_ for the PR.

  • The following deprecated commandline options were removed:

    • --genscript: no longer supported;
    • --no-assert: use --assert=plain instead;
    • --nomagic: use --assert=plain instead;
    • --report: use -r instead;

    Thanks to RedBeardCode for the PR (1664).

  • ImportErrors in plugins now are a fatal error instead of issuing a pytest warning (1479). Thanks to The-Compiler for the PR.

  • Removed support code for Python 3 versions < 3.3 (1627_).

  • Removed all py.test-X* entry points. The versioned, suffixed entry points were never documented and a leftover from a pre-virtualenv era. These entry points also created broken entry points in wheels, so removing them also removes a source of confusion for users (1632). Thanks obestwalter for the PR.

  • pytest.skip() now raises an error when used to decorate a test function, as opposed to its original intent (to imperatively skip a test inside a test function). Previously this usage would cause the entire module to be skipped (607). Thanks omarkohl for the complete PR (1519_).

  • Exit tests if a collection error occurs. A poll indicated most users will hit CTRL-C anyway as soon as they see collection errors, so pytest might as well make that the default behavior (1421). A --continue-on-collection-errors option has been added to restore the previous behaviour. Thanks olegpidsadnyi and omarkohl for the complete PR (1628).

  • Renamed the pytest pdb module (plugin) into debugging to avoid clashes with the builtin pdb module.

  • Raise a helpful failure message when requesting a parametrized fixture at runtime, e.g. with request.getfixturevalue. Previously these parameters were simply never defined, so a fixture decorated like pytest.fixture(params=[0, 1, 2]) only ran once (460). Thanks to nikratio for the bug report, RedBeardCode and tomviner for the PR.

  • _pytest.monkeypatch.monkeypatch class has been renamed to _pytest.monkeypatch.MonkeyPatch so it doesn't conflict with the monkeypatch fixture.

  • --exitfirst / -x can now be overridden by a following --maxfail=N and is just a synonym for --maxfail=1.

New Features

  • Support nose-style __test__ attribute on methods of classes, including unittest-style Classes. If set to False, the test will not be collected.

  • New doctest_namespace fixture for injecting names into the namespace in which doctests run. Thanks milliams for the complete PR (1428).

  • New --doctest-report option available to change the output format of diffs when running (failing) doctests (implements 1749). Thanks hartym for the PR.

  • New name argument to pytest.fixture decorator which allows a custom name for a fixture (to solve the funcarg-shadowing-fixture problem). Thanks novas0x2a for the complete PR (1444).

  • New approx() function for easily comparing floating-point numbers in tests. Thanks kalekundert for the complete PR (1441).

  • Ability to add global properties in the final xunit output file by accessing the internal junitxml plugin (experimental). Thanks tareqalayan for the complete PR 1454).

  • New ExceptionInfo.match() method to match a regular expression on the string representation of an exception (372). Thanks omarkohl for the complete PR (1502_).

  • __tracebackhide__ can now also be set to a callable which then can decide whether to filter the traceback based on the ExceptionInfo object passed to it. Thanks The-Compiler for the complete PR (1526).

  • New pytest_make_parametrize_id(config, val) hook which can be used by plugins to provide friendly strings for custom types. Thanks palaviv_ for the PR.

  • capsys and capfd now have a disabled() context-manager method, which can be used to temporarily disable capture within a test. Thanks nicoddemus_ for the PR.

  • New cli flag --fixtures-per-test: shows which fixtures are being used for each selected test item. Features doc strings of fixtures by default. Can also show where fixtures are defined if combined with -v. Thanks hackebrot_ for the PR.

  • Introduce pytest command as recommended entry point. Note that py.test still works and is not scheduled for removal. Closes proposal 1629. Thanks obestwalter and davehunt for the complete PR (1633).

  • New cli flags:

    • --setup-plan: performs normal collection and reports the potential setup and teardown and does not execute any fixtures and tests;
    • --setup-only: performs normal collection, executes setup and teardown of fixtures and reports them;
    • --setup-show: performs normal test execution and additionally shows setup and teardown of fixtures;
    • --keep-duplicates: py.test now ignores duplicated paths given in the command line. To retain the previous behavior where the same test could be run multiple times by specifying it in the command-line multiple times, pass the --keep-duplicates argument (1609_);

    Thanks d6e, kvas-it, sallner, ioggstream and omarkohl_ for the PRs.

  • New CLI flag --override-ini/-o: overrides values from the ini file. For example: &quot;-o xfail_strict=True&quot;'. Thanks blueyed and fengxx for the PR.

  • New hooks:

    • pytest_fixture_setup(fixturedef, request): executes fixture setup;
    • pytest_fixture_post_finalizer(fixturedef): called after the fixture's finalizer and has access to the fixture's result cache.

    Thanks d6e, sallner.

  • Issue warnings for asserts whose test is a tuple literal. Such asserts will never fail because tuples are always truthy and are usually a mistake (see 1562). Thanks kvas-it, for the PR.

  • Allow passing a custom debugger class (e.g. --pdbcls=IPython.core.debugger:Pdb). Thanks to anntzer_ for the PR.

Changes

  • Plugins now benefit from assertion rewriting. Thanks sober7, nicoddemus and flub_ for the PR.

  • Change report.outcome for xpassed tests to &quot;passed&quot; in non-strict mode and &quot;failed&quot; in strict mode. Thanks to hackebrot for the PR (1795) and gprasad84 for report (1546).

  • Tests marked with xfail(strict=False) (the default) now appear in JUnitXML reports as passing tests instead of skipped. Thanks to hackebrot for the PR (1795).

  • Highlight path of the file location in the error report to make it easier to copy/paste. Thanks suzaku for the PR (1778).

  • Fixtures marked with pytest.fixture can now use yield statements exactly like those marked with the pytest.yield_fixture decorator. This change renders pytest.yield_fixture deprecated and makes pytest.fixture with yield statements the preferred way to write teardown code (1461). Thanks csaftoiu for bringing this to attention and nicoddemus_ for the PR.

  • Explicitly passed parametrize ids do not get escaped to ascii (1351). Thanks ceridwen for the PR.

  • Fixtures are now sorted in the error message displayed when an unknown fixture is declared in a test function. Thanks nicoddemus_ for the PR.

  • pytest_terminal_summary hook now receives the exitstatus of the test session as argument. Thanks blueyed for the PR (1809).

  • Parametrize ids can accept None as specific test id, in which case the automatically generated id for that argument will be used. Thanks palaviv for the complete PR (1468).

  • The parameter to xunit-style setup/teardown methods (setup_method, setup_module, etc.) is now optional and may be omitted. Thanks okken for bringing this to attention and nicoddemus for the PR.

  • Improved automatic id generation selection in case of duplicate ids in parametrize. Thanks palaviv for the complete PR (1474).

  • Now pytest warnings summary is shown up by default. Added a new flag --disable-pytest-warnings to explicitly disable the warnings summary (1668_).

  • Make ImportError during collection more explicit by reminding the user to check the name of the test module/package(s) (1426). Thanks omarkohl for the complete PR (1520_).

  • Add build/ and dist/ to the default --norecursedirs list. Thanks mikofski for the report and tomviner for the PR (1544_).

  • pytest.raises in the context manager form accepts a custom message to raise when no exception occurred. Thanks palaviv for the complete PR (1616).

  • conftest.py files now benefit from assertion rewriting; previously it was only available for test modules. Thanks flub, sober7 and nicoddemus for the PR (1619).

  • Text documents without any doctests no longer appear as "skipped". Thanks graingert for reporting and providing a full PR (1580).

  • Ensure that a module within a namespace package can be found when it is specified on the command line together with the --pyargs option. Thanks to taschini for the PR (1597).

  • Always include full assertion explanation during assertion rewriting. The previous behaviour was hiding sub-expressions that happened to be False, assuming this was redundant information. Thanks bagerard for reporting (1503). Thanks to davehunt and tomviner for the PR.

  • OptionGroup.addoption() now checks if option names were already added before, to make it easier to track down issues like 1618_. Before, you only got exceptions later from argparse library, giving no clue about the actual reason for double-added options.

  • yield-based tests are considered deprecated and will be removed in pytest-4.0. Thanks nicoddemus_ for the PR.

  • [pytest] sections in setup.cfg files should now be named [tool:pytest] to avoid conflicts with other distutils commands (see 567). [pytest] sections in pytest.ini or tox.ini files are supported and unchanged. Thanks nicoddemus for the PR.

  • Using pytest_funcarg__ prefix to declare fixtures is considered deprecated and will be removed in pytest-4.0 (1684). Thanks nicoddemus for the PR.

  • Passing a command-line string to pytest.main() is considered deprecated and scheduled for removal in pytest-4.0. It is recommended to pass a list of arguments instead (1723_).

  • Rename getfuncargvalue to getfixturevalue. getfuncargvalue is still present but is now considered deprecated. Thanks to RedBeardCode and tomviner for the PR (1626_).

  • optparse type usage now triggers DeprecationWarnings (1740_).

  • optparse backward compatibility supports float/complex types (457_).

  • Refined logic for determining the rootdir, considering only valid paths which fixes a number of issues: 1594, 1435 and 1471. Updated the documentation according to current behavior. Thanks to blueyed, davehunt and matthiasha for the PR.

  • Always include full assertion explanation. The previous behaviour was hiding sub-expressions that happened to be False, assuming this was redundant information. Thanks bagerard for reporting (1503). Thanks to davehunt and tomviner for PR.

  • Better message in case of not using parametrized variable (see 1539). Thanks to tramwaj29 for the PR.

  • Updated docstrings with a more uniform style.

  • Add stderr write for pytest.exit(msg) during startup. Previously the message was never shown. Thanks BeyondEvil for reporting 1210. Thanks to JonathonSonesen and tomviner for the PR.

  • No longer display the incorrect test deselection reason (1372). Thanks ronnypfannschmidt for the PR.

  • The --resultlog command line option has been deprecated: it is little used and there are more modern and better alternatives (see 830). Thanks nicoddemus for the PR.

  • Improve error message with fixture lookup errors: add an 'E' to the first line and '>' to the rest. Fixes 717. Thanks blueyed for reporting and a PR, eolo999 for the initial PR and tomviner for his guidance during EuroPython2016 sprint.

Bug Fixes

  • Parametrize now correctly handles duplicated test ids.

  • Fix internal error issue when the method argument is missing for teardown_method() (1605_).

  • Fix exception visualization in case the current working directory (CWD) gets deleted during testing (1235). Thanks bukzor for reporting. PR by marscher_.

  • Improve test output for logical expression with brackets (925). Thanks DRMacIver for reporting and RedBeardCode_ for the PR.

  • Create correct diff for strings ending with newlines (1553). Thanks Vogtinator for reporting and RedBeardCode and tomviner for the PR.

  • ConftestImportFailure now shows the traceback making it easier to identify bugs in conftest.py files (1516). Thanks txomon for the PR.

  • Text documents without any doctests no longer appear as "skipped". Thanks graingert for reporting and providing a full PR (1580).

  • Fixed collection of classes with custom __new__ method. Fixes 1579. Thanks to Stranger6667 for the PR.

  • Fixed scope overriding inside metafunc.parametrize (634). Thanks to Stranger6667 for the PR.

  • Fixed the total tests tally in junit xml output (1798). Thanks to cryporchild for the PR.

  • Fixed off-by-one error with lines from request.node.warn. Thanks to blueyed_ for the PR.

.. _1210: https://github.com/pytest-dev/pytest/issues/1210 .. _1235: https://github.com/pytest-dev/pytest/issues/1235 .. _1351: https://github.com/pytest-dev/pytest/issues/1351 .. _1372: https://github.com/pytest-dev/pytest/issues/1372 .. _1421: https://github.com/pytest-dev/pytest/issues/1421 .. _1426: https://github.com/pytest-dev/pytest/issues/1426 .. _1428: https://github.com/pytest-dev/pytest/pull/1428 .. _1435: https://github.com/pytest-dev/pytest/issues/1435 .. _1441: https://github.com/pytest-dev/pytest/pull/1441 .. _1444: https://github.com/pytest-dev/pytest/pull/1444 .. _1454: https://github.com/pytest-dev/pytest/pull/1454 .. _1461: https://github.com/pytest-dev/pytest/pull/1461 .. _1468: https://github.com/pytest-dev/pytest/pull/1468 .. _1471: https://github.com/pytest-dev/pytest/issues/1471 .. _1474: https://github.com/pytest-dev/pytest/pull/1474 .. _1479: https://github.com/pytest-dev/pytest/issues/1479 .. _1502: https://github.com/pytest-dev/pytest/pull/1502 .. _1503: https://github.com/pytest-dev/pytest/issues/1503 .. _1516: https://github.com/pytest-dev/pytest/pull/1516 .. _1519: https://github.com/pytest-dev/pytest/pull/1519 .. _1520: https://github.com/pytest-dev/pytest/pull/1520 .. _1526: https://github.com/pytest-dev/pytest/pull/1526 .. _1539: https://github.com/pytest-dev/pytest/issues/1539 .. _1544: https://github.com/pytest-dev/pytest/issues/1544 .. _1546: https://github.com/pytest-dev/pytest/issues/1546 .. _1553: https://github.com/pytest-dev/pytest/issues/1553 .. _1562: https://github.com/pytest-dev/pytest/issues/1562 .. _1579: https://github.com/pytest-dev/pytest/issues/1579 .. _1580: https://github.com/pytest-dev/pytest/pull/1580 .. _1594: https://github.com/pytest-dev/pytest/issues/1594 .. _1597: https://github.com/pytest-dev/pytest/pull/1597 .. _1605: https://github.com/pytest-dev/pytest/issues/1605 .. _1616: https://github.com/pytest-dev/pytest/pull/1616 .. _1618: https://github.com/pytest-dev/pytest/issues/1618 .. _1619: https://github.com/pytest-dev/pytest/issues/1619 .. _1626: https://github.com/pytest-dev/pytest/pull/1626 .. _1627: https://github.com/pytest-dev/pytest/pull/1627 .. _1628: https://github.com/pytest-dev/pytest/pull/1628 .. _1629: https://github.com/pytest-dev/pytest/issues/1629 .. _1632: https://github.com/pytest-dev/pytest/issues/1632 .. _1633: https://github.com/pytest-dev/pytest/pull/1633 .. _1664: https://github.com/pytest-dev/pytest/pull/1664 .. _1668: https://github.com/pytest-dev/pytest/issues/1668 .. _1684: https://github.com/pytest-dev/pytest/pull/1684 .. _1723: https://github.com/pytest-dev/pytest/pull/1723 .. _1740: https://github.com/pytest-dev/pytest/issues/1740 .. _1749: https://github.com/pytest-dev/pytest/issues/1749 .. _1778: https://github.com/pytest-dev/pytest/pull/1778 .. _1795: https://github.com/pytest-dev/pytest/pull/1795 .. _1798: https://github.com/pytest-dev/pytest/pull/1798 .. _1809: https://github.com/pytest-dev/pytest/pull/1809 .. _372: https://github.com/pytest-dev/pytest/issues/372 .. _457: https://github.com/pytest-dev/pytest/issues/457 .. _460: https://github.com/pytest-dev/pytest/pull/460 .. _567: https://github.com/pytest-dev/pytest/pull/567 .. _607: https://github.com/pytest-dev/pytest/issues/607 .. _634: https://github.com/pytest-dev/pytest/issues/634 .. _717: https://github.com/pytest-dev/pytest/issues/717 .. _830: https://github.com/pytest-dev/pytest/issues/830 .. _925: https://github.com/pytest-dev/pytest/issues/925

.. _anntzer: https://github.com/anntzer .. _bagerard: https://github.com/bagerard .. _BeyondEvil: https://github.com/BeyondEvil .. _blueyed: https://github.com/blueyed .. _ceridwen: https://github.com/ceridwen .. _cryporchild: https://github.com/cryporchild .. _csaftoiu: https://github.com/csaftoiu .. _d6e: https://github.com/d6e .. _davehunt: https://github.com/davehunt .. _DRMacIver: https://github.com/DRMacIver .. _eolo999: https://github.com/eolo999 .. _fengxx: https://github.com/fengxx .. _flub: https://github.com/flub .. _gprasad84: https://github.com/gprasad84 .. _graingert: https://github.com/graingert .. _hartym: https://github.com/hartym .. _JonathonSonesen: https://github.com/JonathonSonesen .. _kalekundert: https://github.com/kalekundert .. _kvas-it: https://github.com/kvas-it .. _marscher: https://github.com/marscher .. _mikofski: https://github.com/mikofski .. _milliams: https://github.com/milliams .. _nikratio: https://github.com/nikratio .. _novas0x2a: https://github.com/novas0x2a .. _obestwalter: https://github.com/obestwalter .. _okken: https://github.com/okken .. _olegpidsadnyi: https://github.com/olegpidsadnyi .. _omarkohl: https://github.com/omarkohl .. _palaviv: https://github.com/palaviv .. _RedBeardCode: https://github.com/RedBeardCode .. _sallner: https://github.com/sallner .. _sober7: https://github.com/sober7 .. _Stranger6667: https://github.com/Stranger6667 .. _suzaku: https://github.com/suzaku .. _tareqalayan: https://github.com/tareqalayan .. _taschini: https://github.com/taschini .. _tramwaj29: https://github.com/tramwaj29 .. _txomon: https://github.com/txomon .. _Vogtinator: https://github.com/Vogtinator .. _matthiasha: https://github.com/matthiasha

2.9.2

==================

Bug Fixes

  • fix 510: skip tests where one parameterize dimension was empty thanks Alex Stapleton for the Report and RonnyPfannschmidt for the PR

  • Fix Xfail does not work with condition keyword argument. Thanks astraw38 for reporting the issue (1496) and tomviner for PR the (1524).

  • Fix win32 path issue when putting custom config file with absolute path in pytest.main(&quot;-c your_absolute_path&quot;).

  • Fix maximum recursion depth detection when raised error class is not aware of unicode/encoded bytes. Thanks prusse-martin for the PR (1506).

  • Fix pytest.mark.skip mark when used in strict mode. Thanks pquentin for the PR and RonnyPfannschmidt for showing how to fix the bug.

  • Minor improvements and fixes to the documentation. Thanks omarkohl_ for the PR.

  • Fix --fixtures to show all fixture definitions as opposed to just one per fixture name. Thanks to hackebrot_ for the PR.

.. _510: https://github.com/pytest-dev/pytest/issues/510 .. _1506: https://github.com/pytest-dev/pytest/pull/1506 .. _1496: https://github.com/pytest-dev/pytest/issues/1496 .. _1524: https://github.com/pytest-dev/pytest/pull/1524

.. _prusse-martin: https://github.com/prusse-martin .. _astraw38: https://github.com/astraw38

2.9.1

==================

Bug Fixes

  • Improve error message when a plugin fails to load. Thanks nicoddemus_ for the PR.

  • Fix (1178 &lt;https://github.com/pytest-dev/pytest/issues/1178&gt;): pytest.fail with non-ascii characters raises an internal pytest error. Thanks nicoddemus for the PR.

  • Fix (469): junit parses report.nodeid incorrectly, when params IDs contain ::. Thanks tomviner for the PR (1431_).

  • Fix (578 &lt;https://github.com/pytest-dev/pytest/issues/578&gt;): SyntaxErrors containing non-ascii lines at the point of failure generated an internal py.test error. Thanks asottile for the report and nicoddemus_ for the PR.

  • Fix (1437_): When passing in a bytestring regex pattern to parameterize attempt to decode it as utf-8 ignoring errors.

  • Fix (649_): parametrized test nodes cannot be specified to run on the command line.

  • Fix (138_): better reporting for python 3.3+ chained exceptions

.. _1437: https://github.com/pytest-dev/pytest/issues/1437 .. _469: https://github.com/pytest-dev/pytest/issues/469 .. _1431: https://github.com/pytest-dev/pytest/pull/1431 .. _649: https://github.com/pytest-dev/pytest/issues/649 .. _138: https://github.com/pytest-dev/pytest/issues/138

.. _asottile: https://github.com/asottile

2.9.0

==================

New Features

  • New pytest.mark.skip mark, which unconditionally skips marked tests. Thanks MichaelAquilina for the complete PR (1040).

  • --doctest-glob may now be passed multiple times in the command-line. Thanks jab and nicoddemus for the PR.

  • New -rp and -rP reporting options give the summary and full output of passing tests, respectively. Thanks to codewarrior0_ for the PR.

  • pytest.mark.xfail now has a strict option, which makes XPASS tests to fail the test suite (defaulting to False). There's also a xfail_strict ini option that can be used to configure it project-wise. Thanks rabbbit for the request and nicoddemus for the PR (1355_).

  • Parser.addini now supports options of type bool. Thanks nicoddemus_ for the PR.

  • New ALLOW_BYTES doctest option. This strips b prefixes from byte strings in doctest output (similar to ALLOW_UNICODE). Thanks jaraco for the request and nicoddemus for the PR (1287_).

  • Give a hint on KeyboardInterrupt to use the --fulltrace option to show the errors. Fixes 1366. Thanks to hpk42 for the report and RonnyPfannschmidt_ for the PR.

  • Catch IndexError exceptions when getting exception source location. Fixes a pytest internal error for dynamically generated code (fixtures and tests) where source lines are fake by intention.

Changes

  • Important: py.code &lt;https://pylib.readthedocs.io/en/latest/code.html&gt;_ has been merged into the pytest repository as pytest._code. This decision was made because py.code had very few uses outside pytest and the fact that it was in a different repository made it difficult to fix bugs on its code in a timely manner. The team hopes with this to be able to better refactor out and improve that code. This change shouldn't affect users, but it is useful to let users aware if they encounter any strange behavior.

    Keep in mind that the code for pytest._code is private and experimental, so you definitely should not import it explicitly!

    Please note that the original py.code is still available in pylib &lt;https://pylib.readthedocs.io&gt;_.

  • pytest_enter_pdb now optionally receives the pytest config object. Thanks nicoddemus_ for the PR.

  • Removed code and documentation for Python 2.5 or lower versions, including removal of the obsolete _pytest.assertion.oldinterpret module. Thanks nicoddemus for the PR (1226).

  • Comparisons now always show up in full when CI or BUILD_NUMBER is found in the environment, even when -vv isn't used. Thanks The-Compiler_ for the PR.

  • --lf and --ff now support long names: --last-failed and --failed-first respectively. Thanks MichaelAquilina_ for the PR.

  • Added expected exceptions to pytest.raises fail message.

  • Collection only displays progress ("collecting X items") when in a terminal. This avoids cluttering the output when using --color=yes to obtain colors in CI integrations systems (1397_).

Bug Fixes

  • The -s and -c options should now work under xdist; Config.fromdictargs now represents its input much more faithfully. Thanks to bukzor for the complete PR (680).

  • Fix (1290): support Python 3.5's ``` operator in assertion rewriting. ThanksShinkenjoe` for report with test case and tomviner_ for the PR.

  • Fix formatting utf-8 explanation messages (1379). Thanks biern for the PR.

  • Fix traceback style docs to describe all of the available options (auto/long/short/line/native/no), with auto being the default since v2.6. Thanks hackebrot for the PR.

  • Fix (1422_): junit record_xml_property doesn't allow multiple records with same name.

.. _traceback style docs: https://pytest.org/latest/usage.htmlmodifying-python-traceback-printing

.. _1609: https://github.com/pytest-dev/pytest/issues/1609 .. _1422: https://github.com/pytest-dev/pytest/issues/1422 .. _1379: https://github.com/pytest-dev/pytest/issues/1379 .. _1366: https://github.com/pytest-dev/pytest/issues/1366 .. _1040: https://github.com/pytest-dev/pytest/pull/1040 .. _680: https://github.com/pytest-dev/pytest/issues/680 .. _1287: https://github.com/pytest-dev/pytest/pull/1287 .. _1226: https://github.com/pytest-dev/pytest/pull/1226 .. _1290: https://github.com/pytest-dev/pytest/pull/1290 .. _1355: https://github.com/pytest-dev/pytest/pull/1355 .. _1397: https://github.com/pytest-dev/pytest/issues/1397 .. _biern: https://github.com/biern .. _MichaelAquilina: https://github.com/MichaelAquilina .. _bukzor: https://github.com/bukzor .. _hpk42: https://github.com/hpk42 .. _nicoddemus: https://github.com/nicoddemus .. _jab: https://github.com/jab .. _codewarrior0: https://github.com/codewarrior0 .. _jaraco: https://github.com/jaraco .. _The-Compiler: https://github.com/The-Compiler .. _Shinkenjoe: https://github.com/Shinkenjoe .. _tomviner: https://github.com/tomviner .. _RonnyPfannschmidt: https://github.com/RonnyPfannschmidt .. _rabbbit: https://github.com/rabbbit .. _hackebrot: https://github.com/hackebrot .. _pquentin: https://github.com/pquentin .. _ioggstream: https://github.com/ioggstream

2.8.7

==================

  • fix 1338: use predictable object resolution for monkeypatch

2.8.6

==================

  • fix 1259: allow for double nodeids in junitxml, this was a regression failing plugins combinations like pytest-pep8 + pytest-flakes

  • Workaround for exception that occurs in pyreadline when using --pdb with standard I/O capture enabled. Thanks Erik M. Bray for the PR.

  • fix 900: Better error message in case the target of a monkeypatch call raises an ImportError.

  • fix 1292: monkeypatch calls (setattr, setenv, etc.) are now O(1). Thanks David R. MacIver for the report and Bruno Oliveira for the PR.

  • fix 1223: captured stdout and stderr are now properly displayed before entering pdb when --pdb is used instead of being thrown away. Thanks Cal Leeming for the PR.

  • fix 1305: pytest warnings emitted during pytest_terminal_summary are now properly displayed. Thanks Ionel Maries Cristian for the report and Bruno Oliveira for the PR.

  • fix 628: fixed internal UnicodeDecodeError when doctests contain unicode. Thanks Jason R. Coombs for the report and Bruno Oliveira for the PR.

  • fix 1334: Add captured stdout to jUnit XML report on setup error. Thanks Georgy Dyuldin for the PR.

2.8.5

==================

  • fix 1243: fixed issue where class attributes injected during collection could break pytest. PR by Alexei Kozlenok, thanks Ronny Pfannschmidt and Bruno Oliveira for the review and help.

  • fix 1074: precompute junitxml chunks instead of storing the whole tree in objects Thanks Bruno Oliveira for the report and Ronny Pfannschmidt for the PR

  • fix 1238: fix pytest.deprecated_call() receiving multiple arguments (Regression introduced in 2.8.4). Thanks Alex Gaynor for the report and Bruno Oliveira for the PR.

2.8.4

==================

  • fix 1190: deprecated_call() now works when the deprecated function has been already called by another test in the same module. Thanks Mikhail Chernykh for the report and Bruno Oliveira for the PR.

  • fix 1198: --pastebin option now works on Python 3. Thanks Mehdy Khoshnoody for the PR.

  • fix 1219: --pastebin now works correctly when captured output contains non-ascii characters. Thanks Bruno Oliveira for the PR.

  • fix 1204: another error when collecting with a nasty getattr(). Thanks Florian Bruhin for the PR.

  • fix the summary printed when no tests did run. Thanks Florian Bruhin for the PR.

  • fix 1185 - ensure MANIFEST.in exactly matches what should go to a sdist

  • a number of documentation modernizations wrt good practices. Thanks Bruno Oliveira for the PR.

2.8.3

==================

  • fix 1169: add name attribute to testcases in TestCaseFunction to support the unittest.skip decorator on functions and methods. Thanks Lee Kamentsky for the PR.

  • fix 1035: collecting tests if test module level obj has getattr(). Thanks Suor for the report and Bruno Oliveira / Tom Viner for the PR.

  • fix 331: don't collect tests if their failure cannot be reported correctly e.g. they are a callable instance of a class.

  • fix 1133: fixed internal error when filtering tracebacks where one entry belongs to a fi

coveralls commented 7 years ago

Coverage Status

Coverage remained the same at 92.303% when pulling 8a2777d86d7a0d1c3aea01dc6e5bfb7b72ea12df on pyup-pin-pytest-3.2.1 into 49901f7dac3b52da1c5126ad151803f42e608c2f on master.