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

Initial Update #1

Merged
merged 7 commits into from
Nov 15, 2016
Merged

Initial Update #1

merged 7 commits into from
Nov 15, 2016

Conversation

pyup-bot
Copy link
Collaborator

This is my first visit to this fine repo so I have bundled all updates in a single pull request to make things easier for you to merge.

Close this pull request and delete the branch if you want me to start with single pull requests right away

Here's the executive summary:

Updates

Here's a list of all the updates bundled in this pull request. I've added some links to make it easier for you to find all the information you need.

pytest-html 1.11.0 » 1.11.0 PyPI | Changelog | Repo
pytest-xdist 1.15.0 » 1.15.0 PyPI | Changelog | Repo
pytest-flake8 0.8.1 » 0.8.1 PyPI | Changelog | Repo
pyflakes 1.3.0 » 1.3.0 PyPI | Changelog | Repo
pytest 3.0.4 » 3.0.4 PyPI | Changelog | Homepage
pytest-cookies 0.2.0 » 0.2.0 PyPI | Repo
pytest-cov 2.4.0 » 2.4.0 PyPI | Changelog | Repo

Changelogs

pytest-html -> 1.11.0

1.11.0

  • Add support for ANSI codes in logs

1.10.1

  • Fix corrupt image asset files
  • Remove image links from self-contained report
  • Fix issue with unexpected passes not being reported in pytest 3.0

1.10.0

  • Hide filter checkboxes when JavaScript is disabled
  • Removed rerun outcome unless the plugin is active
  • Introduce --self-contained-html option to store CSS and assets inline
  • Save images, text, and JSON extras as files in an assets directory
  • Use an external CSS file
  • Set initial sort order in the HTML
  • Allow visibility of extra details to be toggled

1.9.0

  • Split pytest_sessionfinish into generate and save methods
  • Show tests rerun by pytest-rerunfailures plugin
  • Added a feature to filter tests by outcome

1.8.1

  • Include captured output for passing tests

1.8.0

  • Remove duplication from the environment section
  • Dropped support for Python 3.2
  • Indicated setup and teardown in report
  • Fixed colour of errors in report

1.7

  • Fixed INTERNALERROR when an xdist slave crashes
  • Added report sections including stdout and stderr to log

1.6

  • Fixed environment details when using pytest-xdist

1.5.1

  • Made environment fixture session scoped to avoid repeating content

1.5

  • Replaced custom hook for setting environemnt section with a fixture

1.4

  • Dropped support for pytest 2.6
  • Fixed unencodable strings for Python 3

1.3.2

  • Prevented additional row if log has no content or there is no extra HTML

1.3.1

  • Fixed encoding issue in Python 3

1.3

  • Show extra content regardless of test result
  • Added support for extra content in JSON format

1.2

  • Changed default sort order to test result

1.1

  • Added Python 3 support

1.0

  • Initial release

pytest-xdist -> 1.15.0

1.15.0


  • new worker_id fixture, returns the id of the worker in a test or fixture.
    Thanks Jared Hellman for the PR.
  • display progress during collection only when in a terminal, similar to pytest 1397 issue.
    Thanks Bruno Oliveira for the PR.
  • fix internal error message when --maxfail is used (62, 65).
    Thanks Collin RM Stocks and Bryan A. Jones for reports and Bruno Oliveira for the PR.

1.14


  • new hook: pytest_xdist_node_collection_finished(node, ids), called when
    a worker has finished collection. Thanks Omer Katz for the request and
    Bruno Oliveira for the PR.
  • fix README display on pypi
  • fix 22: xdist now works if the internal tmpdir plugin is disabled.
    Thanks Bruno Oliveira for the PR.
  • fix 32: xdist now works if looponfail or boxed are disabled.
    Thanks Bruno Oliveira for the PR.

1.13.1


  • fix a regression -n 0 now disables xdist again

1.13


  • extended the tox matrix with the supported py.test versions
  • split up the plugin into 3 plugin's
    to prepare the departure of boxed and looponfail.

looponfail will be a part of core
and forked boxed will be replaced
with a more reliable primitive based on xdist

  • conforming with new pytest-2.8 behavior of returning non-zero when all
    tests were skipped or deselected.
  • new "--max-slave-restart" option that can be used to control maximum
    number of times pytest-xdist can restart slaves due to crashes. Thanks to
    Anatoly Bubenkov for the report and Bruno Oliveira for the PR.
  • release as wheel
  • "-n" option now can be set to "auto" for automatic detection of number
    of cpus in the host system. Thanks Suloev Dmitry for the PR.

1.12


  • fix issue594: properly report errors when the test collection
    is random. Thanks Bruno Oliveira.
  • some internal test suite adaptation (to become forward
    compatible with the upcoming pytest-2.8)

1.11


  • fix pytest/xdist issue485 (also depends on py-1.4.22):
    attach stdout/stderr on --boxed processes that die.
  • fix pytest/xdist issue503: make sure that a node has usually
    two items to execute to avoid scoped fixtures to be torn down
    pre-maturely (fixture teardown/setup is "nextitem" sensitive).
    Thanks to Andreas Pelme for bug analysis and failing test.
  • restart crashed nodes by internally refactoring setup handling
    of nodes. Also includes better code documentation.
    Many thanks to Floris Bruynooghe for the complete PR.

1.10


  • add glob support for rsyncignores, add command line option to pass
    additional rsyncignores. Thanks Anatoly Bubenkov.
  • fix pytest issue382 - produce "pytest_runtest_logstart" event again
    in master. Thanks Aron Curzon.
  • fix pytest issue419 by sending/receiving indices into the test
    collection instead of node ids (which are not neccessarily unique
    for functions parametrized with duplicate values)
  • send multiple "to test" indices in one network message to a slave
    and improve heuristics for sending chunks where the chunksize
    depends on the number of remaining tests rather than fixed numbers.
    This reduces the number of master -> node messages (but not the
    reverse direction)

1.9


  • changed LICENSE to MIT
  • fix duplicate reported test ids with --looponfailing
    (thanks Jeremy Thurgood)
  • fix pytest issue41: re-run tests on all file changes, not just
    randomly select ones like .py/.c.
  • fix pytest issue347: slaves running on top of Python3.2
    will set PYTHONDONTWRITEYBTECODE to 1 to avoid import concurrency
    bugs.

1.8


  • fix pytest-issue93 - use the refined pytest-2.2.1 runtestprotocol
    interface to perform eager teardowns for test items.

1.7


  • fix incompatibilities with pytest-2.2.0 (allow multiple
    pytest_runtest_logreport reports for a test item)

1.6


  • terser collection reporting
  • fix issue34 - distributed testing with -p plugin now works correctly
  • fix race condition in looponfail mode where a concurrent file removal
    could cause a crash

1.5


  • adapt to and require pytest-2.0 changes, rsyncdirs and rsyncignore can now
    only be specified in [pytest] sections of ini files, see "py.test -h"
    for details.
  • major internal refactoring to match the pytest-2.0 event refactoring
  • perform test collection always at slave side instead of at the master
  • make python2/python3 bridging work, remove usage of pickling
  • improve initial reporting by using line-rewriting
  • remove all trailing whitespace from source

1.4


  • perform distributed testing related reporting in the plugin
    rather than having dist-related code in the generic py.test
    distribution
  • depend on execnet-1.0.7 which adds "env1:NAME=value" keys to
    gateway specification strings.
  • show detailed gateway setup and platform information only when
    "-v" or "--verbose" is specified.

1.3


  • fix --looponfailing - it would not actually run against the fully changed
    source tree when initial conftest files load application state.
  • adapt for py-1.3.1's new --maxfailure option

1.2


  • fix issue79: sessionfinish/teardown hooks are now called systematically
    on the slave side
  • introduce a new data input/output mechanism to allow the master side
    to send and receive data from a slave.
  • fix race condition in underlying pickling/unpickling handling
  • use and require new register hooks facility of py.test>=1.3.0
  • require improved execnet>=1.0.6 because of various race conditions
    that can arise in xdist testing modes.
  • fix some python3 related pickling related race conditions
  • fix PyPI description

1.1


  • fix an indefinite hang which would wait for events although no events
    are pending - this happened if items arrive very quickly while
    the "reschedule-event" tried unconditionally avoiding a busy-loop
    and not schedule new work.

1.0


  • moved code out of py-1.1.1 into its own plugin
  • use a new, faster and more sensible model to do load-balancing
    of tests - now no magic "MAXITEMSPERHOST" is needed and load-testing
    works effectively even with very few tests.
  • cleaned up termination handling
  • make -x cause hard killing of test nodes to decrease wait time
    until the traceback shows up on first failure

pytest-flake8 -> 0.8.1

0.8.1


  • Allow running with no cacheprovider
  • Modernize use of fixtures in tests

0.7


  • Added new options "flake8-max-complexity", "flake8-show-source"
    and "flake8-statistics"

0.6


  • Update for flake8 3.x

0.5


  • Fix rendering of rST; from Ken Dreyer

0.4


  • Really fix cache usage; had a comparison between tuple and
    list which always failed

0.3


  • Use integrated pytest cache instead of separate pytest-cache
    module (which is now integrated)
  • Use documented hooks for start and end of a test run

0.2


  • Added ability to override maximum line length

0.1


  • initial release

pyflakes -> 1.3.0

1.3.0

  • Fix PyPy2 Windows IntegrationTests
  • Check for duplicate dictionary keys
  • Fix TestMain tests on Windows
  • Fix "continue" and "break" checks ignoring py3.5's "async for" loop

1.2.3

  • Fix TypeError when processing relative imports

1.2.2

  • Avoid traceback when exception is del-ed in except

1.2.1

  • Fix false RedefinedWhileUnused for submodule imports

1.2.0

  • Warn against reusing exception names after the except: block on Python 3
  • Improve the error messages for imports

1.1.0

  • Allow main() to accept arguments.
  • Support matrix-multiplication operator
  • Validate future imports
  • Fix doctest scope testing
  • Warn for tuple assertions which are always true
  • Warn for "import *" not at module level on Python 3
  • Catch many more kinds of SyntaxErrors
  • Check PEP 498 f-strings
  • (and a few more sundry bugfixes)

1.0.0

  • Python 3.5 support. async/await statements in particular.
  • Fix test_api.py on Windows.
  • Eliminate a false UnusedImport warning when the name has been
    declared "global"

0.9.2

  • Fix a traceback when a global is defined in one scope, and used in another.

0.9.1

  • Update NEWS.txt to include 0.9.0, which had been forgotten.

0.9.0

  • Exit gracefully, not with a traceback, on SIGINT and SIGPIPE.
  • Fix incorrect report of undefined name when using lambda expressions in
    generator expressions.
  • Don't crash on DOS line endings on Windows and Python 2.6.
  • Don't report an undefined name if the 'del' which caused a name to become
    undefined is only conditionally executed.
  • Properly handle differences in list comprehension scope in Python 3.
  • Improve handling of edge cases around 'global' defined variables.
  • Report an error for 'return' outside a function.

0.8.1

  • Detect the declared encoding in Python 3.
  • Do not report redefinition of import in a local scope, if the
    global name is used elsewhere in the module.
  • Catch undefined variable in loop generator when it is also used as
    loop variable.
  • Report undefined name for (a, b) = (1, 2) but not for the general
    unpacking (a, b) = func().
  • Correctly detect when an imported module is used in default arguments
    of a method, when the method and the module use the same name.
  • Distribute a universal wheel file.

0.8.0

  • Adapt for the AST in Python 3.4.
  • Fix caret position on SyntaxError.
  • Fix crash on Python 2.x with some doctest SyntaxError.
  • Add tox.ini.
  • The PYFLAKES_NODOCTEST environment variable has been replaced with the
    PYFLAKES_DOCTEST environment variable (with the opposite meaning).
    Doctest checking is now disabled by default; set the environment variable
    to enable it.
  • Correctly parse incremental __all__ += [...].
  • Catch return with arguments inside a generator (Python <= 3.2).
  • Do not complain about _ in doctests.
  • Drop deprecated methods pushFunctionScope and pushClassScope.

0.7.3

  • Do not report undefined name for generator expression and dict or
    set comprehension at class level.
  • Deprecate Checker.pushFunctionScope and Checker.pushClassScope:
    use Checker.pushScope instead.
  • Remove dependency on Unittest2 for the tests.

0.7.2

  • Fix computation of DoctestSyntaxError.lineno and col.
  • Add boolean attribute Checker.withDoctest to ignore doctests.
  • If environment variable PYFLAKES_NODOCTEST is set, skip doctests.
  • Environment variable PYFLAKES_BUILTINS accepts a comma-separated
    list of additional built-in names.

0.7.1

  • File bin/pyflakes was missing in tarball generated with distribute.
  • Fix reporting errors in non-ASCII filenames (Python 2.x).

0.7.0

  • Add --version and --help options.
  • Support python -m pyflakes (Python 2.7 and Python 3.x).
  • Add attribute Message.col to report column offset.
  • Do not report redefinition of variable for a variable used in a list
    comprehension in a conditional.
  • Do not report redefinition of variable for generator expressions and
    set or dict comprehensions.
  • Do not report undefined name when the code is protected with a
    NameError exception handler.
  • Do not report redefinition of variable when unassigning a module imported
    for its side-effect.
  • Support special locals like __tracebackhide__ for py.test.
  • Support checking doctests.
  • Fix issue with Turkish locale where &#39;i&#39;.upper() == &#39;i&#39; in Python 2.

0.6.1

  • Fix detection of variables in augmented assignments.

0.6.0

  • Support Python 3 up to 3.3, based on the pyflakes3k project.
  • Preserve compatibility with Python 2.5 and all recent versions of Python.
  • Support custom reporters in addition to the default Reporter.
  • Allow function redefinition for modern property construction via
    property.setter/deleter.
  • Fix spurious redefinition warnings in conditionals.
  • Do not report undefined name in all if import * is used.
  • Add WindowsError as a known built-in name on all platforms.
  • Support specifying additional built-ins in the Checker constructor.
  • Don't issue Unused Variable warning when using locals() in current scope.
  • Handle problems with the encoding of source files.
  • Remove dependency on Twisted for the tests.
  • Support python setup.py test and python setup.py develop.
  • Create script using setuptools entry_points to support all platforms,
    including Windows.

0.5.0

  • Convert pyflakes to use newer _ast infrastructure rather than compiler.
  • Support for new syntax in 2.7 (including set literals, set comprehensions,
    and dictionary comprehensions).
  • Make sure class names don't get bound until after class definition.

0.4.0

  • Fix reporting for certain SyntaxErrors which lack line number
    information.
  • Check for syntax errors more rigorously.
  • Support checking names used with the class decorator syntax in versions
    of Python which have it.
  • Detect local variables which are bound but never used.
  • Handle permission errors when trying to read source files.
  • Handle problems with the encoding of source files.
  • Support importing dotted names so as not to incorrectly report them as
    redefined unused names.
  • Support all forms of the with statement.
  • Consider static __all__ definitions and avoid reporting unused names
    if the names are listed there.
  • Fix incorrect checking of class names with respect to the names of their
    bases in the class statement.
  • Support the __path__ global in __init__.py.

0.3.0

  • Display more informative SyntaxError messages.
  • Don't hang flymake with unmatched triple quotes (only report a single
    line of source for a multiline syntax error).
  • Recognize builtins as a defined name.
  • Improve pyflakes support for python versions 2.3-2.5
  • Support for if-else expressions and with statements.
  • Warn instead of error on non-existent file paths.
  • Check for future imports after other statements.
  • Add reporting for some types of import shadowing.
  • Improve reporting of unbound locals

pytest -> 3.0.4

3.0.4.dev0

==========

  • 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
    or the PR.
  • Fix teardown error message in generated xUnit XML.
    Thanks gdyuldin_ or 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: pytest-dev/pytest#442
.. _1965: pytest-dev/pytest#1965
.. _1976: pytest-dev/pytest#1976
.. _1984: pytest-dev/pytest#1984
.. _1998: pytest-dev/pytest#1998
.. _2004: pytest-dev/pytest#2004
.. _2005: pytest-dev/pytest#2005
.. _1649: pytest-dev/pytest#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 pkg_resources 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

.. _1853: pytest-dev/pytest#1853
.. _1905: pytest-dev/pytest#1905
.. _1934: pytest-dev/pytest#1934
.. _1944: pytest-dev/pytest#1944
.. _704: pytest-dev/pytest#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: pytest-dev/pytest#1857
.. _1864: pytest-dev/pytest#1864
.. _1888: pytest-dev/pytest#1888
.. _1891: pytest-dev/pytest#1891
.. _1890: pytest-dev/pytest#1890
.. _1898: pytest-dev/pytest#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: pytest-dev/pytest#1822
.. _1832: pytest-dev/pytest#1832
.. _1849: pytest-dev/pytest#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: pytest-dev/pytest#1210
.. _1235: pytest-dev/pytest#1235
.. _1351: pytest-dev/pytest#1351
.. _1372: pytest-dev/pytest#1372
.. _1421: pytest-dev/pytest#1421
.. _1426: pytest-dev/pytest#1426
.. _1428: pytest-dev/pytest#1428
.. _1435: pytest-dev/pytest#1435
.. _1441: pytest-dev/pytest#1441
.. _1444: pytest-dev/pytest#1444
.. _1454: pytest-dev/pytest#1454
.. _1461: pytest-dev/pytest#1461
.. _1468: pytest-dev/pytest#1468
.. _1471: pytest-dev/pytest#1471
.. _1474: pytest-dev/pytest#1474
.. _1479: pytest-dev/pytest#1479
.. _1502: pytest-dev/pytest#1502
.. _1503: pytest-dev/pytest#1503
.. _1516: pytest-dev/pytest#1516
.. _1519: pytest-dev/pytest#1519
.. _1520: pytest-dev/pytest#1520
.. _1526: pytest-dev/pytest#1526
.. _1539: pytest-dev/pytest#1539
.. _1544: pytest-dev/pytest#1544
.. _1546: pytest-dev/pytest#1546
.. _1553: pytest-dev/pytest#1553
.. _1562: pytest-dev/pytest#1562
.. _1579: pytest-dev/pytest#1579
.. _1580: pytest-dev/pytest#1580
.. _1594: pytest-dev/pytest#1594
.. _1597: pytest-dev/pytest#1597
.. _1605: pytest-dev/pytest#1605
.. _1616: pytest-dev/pytest#1616
.. _1618: pytest-dev/pytest#1618
.. _1619: pytest-dev/pytest#1619
.. _1626: pytest-dev/pytest#1626
.. _1627: pytest-dev/pytest#1627
.. _1628: pytest-dev/pytest#1628
.. _1629: pytest-dev/pytest#1629
.. _1632: pytest-dev/pytest#1632
.. _1633: pytest-dev/pytest#1633
.. _1664: pytest-dev/pytest#1664
.. _1668: pytest-dev/pytest#1668
.. _1684: pytest-dev/pytest#1684
.. _1723: pytest-dev/pytest#1723
.. _1740: pytest-dev/pytest#1740
.. _1749: pytest-dev/pytest#1749
.. _1778: pytest-dev/pytest#1778
.. _1795: pytest-dev/pytest#1795
.. _1798: pytest-dev/pytest#1798
.. _1809: pytest-dev/pytest#1809
.. _372: pytest-dev/pytest#372
.. _457: pytest-dev/pytest#457
.. _460: pytest-dev/pytest#460
.. _567: pytest-dev/pytest#567
.. _607: pytest-dev/pytest#607
.. _634: pytest-dev/pytest#634
.. _717: pytest-dev/pytest#717
.. _830: pytest-dev/pytest#830
.. _925: pytest-dev/pytest#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 puttinging 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: pytest-dev/pytest#510
.. _1506: pytest-dev/pytest#1506
.. _1496: pytest-dev/pytest#1496
.. _1524: pytest-dev/pytest#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: pytest-dev/pytest#1437
.. _469: pytest-dev/pytest#469
.. _1431: pytest-dev/pytest#1431
.. _649: pytest-dev/pytest#649
.. _138: pytest-dev/pytest#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.
    Thanks Shinkenjoe
    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: pytest-dev/pytest#1609
.. _1422: pytest-dev/pytest#1422
.. _1379: pytest-dev/pytest#1379
.. _1366: pytest-dev/pytest#1366
.. _1040: pytest-dev/pytest#1040
.. _680: pytest-dev/pytest#680
.. _1287: pytest-dev/pytest#1287
.. _1226: pytest-dev/pytest#1226
.. _1290: pytest-dev/pytest#1290
.. _1355: pytest-dev/pytest#1355
.. _1397: pytest-dev/pytest#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 file which is no longer available.
    Thanks Bruno Oliveira for the PR.
  • enhancement made to highlight in red the name of the failing tests so
    they stand out in the output.
    Thanks Gabriel Reis for the PR.
  • add more talks to the documentation
  • extend documentation on the --ignore cli option
  • use pytest-runner for setuptools integration
  • minor fixes for interaction with OS X El Capitan
    system integrity protection (thanks Florian)

2.8.2

=====

  • fix 1085: proper handling of encoding errors when passing encoded byte
    strings to pytest.parametrize in Python 2.
    Thanks Themanwithoutaplan for the report and Bruno Oliveira for the PR.
  • fix 1087: handling SystemError when passing empty byte strings to
    pytest.parametrize in Python 3.
    Thanks Paul Kehrer for the report and Bruno Oliveira for the PR.
  • fix 995: fixed internal error when filtering tracebacks where one entry
    was generated by an exec() statement.
    Thanks Daniel Hahler, Ashley C Straw, Philippe Gauthier and Pavel Savchenko
    for contributing and Bruno Oliveira for the PR.
  • fix 1100 and 1057: errors when using autouse fixtures and doctest modules.
    Thanks Sergey B Kirpichev and Vital Kudzelka for contributing and Bruno
    Oliveira for the PR.

2.8.1

=====

  • fix 1034: Add missing nodeid on pytest_logwarning call in
    addhook. Thanks Simon Gomizelj for the PR.
  • 'deprecated_call' is now only satisfied with a DeprecationWarning or
    PendingDeprecationWarning. Before 2.8.0, it accepted any warning, and 2.8.0
    made it accept only DeprecationWarning (but not PendingDeprecationWarning).
    Thanks Alex Gaynor for the issue and Eric Hunsberger for the PR.
  • fix issue 1073: avoid calling getattr on potential plugin objects.
    This fixes an incompatibility with pytest-django. Thanks Andreas Pelme,
    Bruno Oliveira and Ronny Pfannschmidt for contributing and Holger Krekel
    for the fix.
  • Fix issue 704: handle versionconflict during plugin loading more
    gracefully. Thanks Bruno Oliveira for the PR.
  • Fix issue 1064: ""--junitxml" regression when used with the
    "pytest-xdist" plugin, with test reports being assigned to the wrong tests.
    Thanks Daniel Grunwald for the report and Bruno Oliveira for the PR.
  • (experimental) adapt more SEMVER style versioning and change meaning of
    master branch in git repo: "master" branch now keeps the bugfixes, changes
    aimed for micro releases. "features" branch will only be be released
    with minor or major pytest releases.
  • Fix issue 766 by removing documentation references to distutils.
    Thanks Russel Winder.
  • Fix issue 1030: now byte-strings are escaped to produce item node ids
    to make them always serializable.
    Thanks Andy Freeland for the report and Bruno Oliveira for the PR.
  • Python 2: if unicode parametrized values are convertible to ascii, their
    ascii representation is used for the node id.
  • Fix issue 411: Add eq method to assertion comparison example.
    Thanks Ben Webb.
  • Fix issue 653: deprecated_call can be used as context manager.
  • fix issue 877: properly handle assertion explanations with non-ascii repr
    Thanks Mathieu Agopian for the report and Ronny Pfannschmidt for the PR.
  • fix issue 1029: transform errors when writing cache values into pytest-warnings

2.8.0

=====

  • new --lf and -ff options to run only the last failing tests or
    "failing tests first" from the last run. This functionality is provided
    through porting the formerly external pytest-cache plugin into pytest core.
    BACKWARD INCOMPAT: if you used pytest-cache's functionality to persist
    data between test runs be aware that we don't serialize sets anymore.
    Thanks Ronny Pfannschmidt for most of the merging work.
  • "-r" option now accepts "a" to include all possible reports, similar
    to passing "fEsxXw" explicitly (isse960).
    Thanks Abhijeet Kasurde for the PR.
  • avoid python3.5 deprecation warnings by introducing version
    specific inspection helpers, thanks Michael Droettboom.
  • fix issue562: nose.tools.istest now fully respected.
  • fix issue934: when string comparison fails and a diff is too large to display
    without passing -vv, still show a few lines of the diff.
    Thanks Florian Bruhin for the report and Bruno Oliveira for the PR.
  • fix issue736: Fix a bug where fixture params would be discarded when combined
    with parametrization markers.
    Thanks to Markus Unterwaditzer for the PR.
  • fix issue710: introduce ALLOW_UNICODE doctest option: when enabled, the
    u prefix is stripped from unicode strings in expected doctest output. This
    allows doctests which use unicode to run in Python 2 and 3 unchanged.
    Thanks Jason R. Coombs for the report and Bruno Oliveira for the PR.
  • parametrize now also generates meaningful test IDs for enum, regex and class
    objects (as opposed to class instances).
    Thanks to Florian Bruhin for the PR.
  • Add 'warns' to assert that warnings are thrown (like 'raises').
    Thanks to Eric Hunsberger for the PR.
  • Fix issue683: Do not apply an already applied mark. Thanks ojake for the PR.
  • Deal with capturing failures better so fewer exceptions get lost to
    /dev/null. Thanks David Szotten for the PR.
  • fix issue730: deprecate and warn about the --genscript option.
    Thanks Ronny Pfannschmidt for the report and Christian Pommranz for the PR.
  • fix issue751: multiple parametrize with ids bug if it parametrizes class with
    two or more test methods. Thanks Sergey Chipiga for reporting and Jan
    Bednarik for PR.
  • fix issue82: avoid loading conftest files from setup.cfg/pytest.ini/tox.ini
    files and upwards by default (--confcutdir can still be set to override this).
    Thanks Bruno Oliveira for the PR.
  • fix issue768: docstrings found in python modules were not setting up session
    fixtures. Thanks Jason R. Coombs for reporting and Bruno Oliveira for the PR.
  • added tmpdir_factory, a session-scoped fixture that can be used to create
    directories under the base temporary directory. Previously this object was
    installed as a _tmpdirhandler attribute of the config object, but now it
    is part of the official API and using config._tmpdirhandler is
    deprecated.
    Thanks Bruno Oliveira for the PR.
  • fix issue808: pytest's internal assertion rewrite hook now implements the
    optional PEP302 get_data API so tests can access data files next to them.
    Thanks xmo-odoo for request and example and Bruno Oliveira for
    the PR.
  • rootdir and inifile are now displayed during usage errors to help
    users diagnose problems such as unexpected ini files which add
    unknown options being picked up by pytest. Thanks to Pavel Savchenko for
    bringing the problem to attention in 821 and Bruno Oliveira for the PR.
  • Summary bar now is colored yellow for warning
    situations such as: all tests either were skipped or xpass/xfailed,
    or no tests were run at all (this is a partial fix for issue500).
  • fix issue812: pytest now exits with status code 5 in situations where no
    tests were run at all, such as the directory given in the command line does
    not contain any tests or as result of a command line option filters
    all out all tests (-k for example).
    Thanks Eric Siegerman (issue812) and Bruno Oliveira for the PR.
  • Summary bar now is colored yellow for warning
    situations such as: all tests either were skipped or xpass/xfailed,
    or no tests were run at all (related to issue500).
    Thanks Eric Siegerman.
  • New testpaths ini option: list of directories to search for tests
    when executing pytest from the root directory. This can be used
    to speed up test collection

@napalm255 napalm255 merged commit cfcf549 into master Nov 15, 2016
@napalm255 napalm255 deleted the pyup-initial-update branch November 15, 2016 03:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants