Metadata-Version: 2.1
Name: pytest-allclose
Version: 1.0.0
Summary: Pytest fixture extending Numpy's allclose function
Home-page: https://www.nengo.ai/pytest-allclose
Author: Applied Brain Research
Author-email: info@appliedbrainresearch.com
License: MIT license
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Pytest
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Requires-Dist: numpy (>=1.11)
Requires-Dist: pytest
Provides-Extra: all
Requires-Dist: nengo-sphinx-theme (>=1.0) ; extra == 'all'
Requires-Dist: sphinx ; extra == 'all'
Requires-Dist: codespell ; extra == 'all'
Requires-Dist: coverage (>=4.3) ; extra == 'all'
Requires-Dist: flake8 ; extra == 'all'
Requires-Dist: gitlint ; extra == 'all'
Requires-Dist: pylint ; extra == 'all'
Provides-Extra: docs
Requires-Dist: nengo-sphinx-theme (>=1.0) ; extra == 'docs'
Requires-Dist: sphinx ; extra == 'docs'
Provides-Extra: optional
Provides-Extra: tests
Requires-Dist: codespell ; extra == 'tests'
Requires-Dist: coverage (>=4.3) ; extra == 'tests'
Requires-Dist: flake8 ; extra == 'tests'
Requires-Dist: gitlint ; extra == 'tests'
Requires-Dist: pylint ; extra == 'tests'

***************
pytest-allclose
***************

``pytest-allclose`` provides the `~.allclose` Pytest fixture,
extending `numpy.allclose` with test-specific features.

A core feature of the `~.allclose` fixture
is that the tolerances for tests can be configured externally.
This allows different repositories to share the same tests,
but use different tolerances.
See the "Configuration" section below for details.

Installation
============

To use this fixture, install with

.. code-block:: bash

   pip install pytest-allclose

Usage
=====

The `~.allclose` fixture is used just like `numpy.allclose`.

.. code-block:: python

   import numpy as np

   def test_close(allclose):
       x = np.linspace(-1, 1)
       y = x + 0.001
       assert allclose(y, x, atol=0.002)
       assert not allclose(y, x, atol=0.0005)
       assert not allclose(y, x, rtol=0.002)

Additional arguments
--------------------

The `~.allclose` fixture has a number of arguments
that are not part of `numpy.allclose`.
One such argument is ``xtol``,
which allows arrays that have been shifted along their first axis
by a certain number of steps to be considered close.

.. code-block:: python

   import numpy as np

   def test_close(allclose):
       x = np.linspace(-1, 1)

       assert allclose(x[1:], x[:-1], xtol=1)
       assert allclose(x[3:], x[:-3], xtol=3)
       assert not allclose(x[3:], x[:-3], xtol=1)

Refer to the `~.allclose` API reference for all additional arguments.

RMSE error reporting
--------------------

The `~.allclose` fixture stores root-mean-square error values,
which can be reported in the pytest terminal summary.
To do so, put the following in your ``conftest.py`` file.

.. code-block:: python

    from pytest_allclose import report_rmses

    def pytest_terminal_summary(terminalreporter):
        report_rmses(terminalreporter)

See the `~.report_rmses` API reference for more information.

Configuration
=============

allclose_tolerances
-------------------

``allclose_tolerances`` accepts a list of test name patterns,
followed by values for any of the `~.allclose` parameters.
These values will override any values provided within the test function itself,
allowing multiple repositories to use the same test suite,
but with different tolerances.

.. code-block:: ini

   allclose_tolerances =
       test_file.py:test_function atol=0.3  # set atol for specific test
       test_file.py:test_func* rtol=0.2  # set rtol for tests matching wildcard
       test_file.py:* atol=0.1 rtol=0.3  # set both tols for all tests in file
       test_*tion rtol=0.2  # set rtol for all matching tests in any file
       test_function[True] atol=0.1  # set atol only for one parametrization

The only special character recognized in these patterns
is the wildcard character ``*``,
which matches any group of zero or more characters.

If the test is parametrized,
then a pattern like ``test_name[param0-param1]``
will match specific parameter settings,
and ``test_name*`` will match all parameter settings.
Note that the latter will match any test that starts with ``test_name``.

If a test has multiple `~.allclose` calls,
you can use multiple tolerance lines that match the same test
to set different values for the first, second, third, etc. calls.
If there are more `~.allclose` calls than tolerance lines,
the last tolerance line will be used for all remaining `~.allclose` calls.

Example test file:

.. code-block:: python

   def test_close(allclose):
       x = np.linspace(-1, 1)
       y = x + 0.001
       assert allclose(y, x)
       assert not allclose(y, x)

Example configuration file (``pytest.ini``, ``setup.cfg``):

.. code-block:: ini

   allclose_tolerances =
       test_close atol=0.002  # affects first allclose call
       test_close atol=0.0005  # affects second allclose call

.. note:: Different tolerance lines correspond to *calls* of the
          function, not lines of code. If you have a ``for``
          loop that calls `~.allclose` 3 times,
          each of these calls corresponds to a new tolerance line.
          If you have a fourth `~.allclose` call,
          you would need three tolerance lines for the three calls
          in the ``for`` loop, then a fourth line for the last call.

.. caution:: The patterns for multiple calls of allclose in a function
             must be exactly the same.
             This means that if you have specific values for one
             parametrization and general values for others,
             you must put the specific values first
             or they will not have any effect.

             Good example, specific takes precedence:

             .. code-block:: ini

                allclose_tolerances =
                    test_close[True-1] atol=0.002
                    test_close[True-1] atol=0.0005
                    test_close* atol=0.001
                    test_close* atol=0.0001

             Bad example, general takes precedence:

             .. code-block:: ini

                allclose_tolerances =
                    test_close* atol=0.001
                    test_close* atol=0.0001
                    test_close[True-1] atol=0.002
                    test_close[True-1] atol=0.0005

See the full
`documentation <https://www.nengo.ai/pytest-allclose>`__
for the API reference.

***************
Release History
***************

.. Changelog entries should follow this format:

   version (release date)
   ======================

   **section**

   - One-line description of change (link to Github issue/PR)

.. Changes should be organized in one of several sections:

   - Added
   - Changed
   - Deprecated
   - Removed
   - Fixed

1.0.0 (July 30, 2019)
=====================

Initial release of ``pytest-allclose``!
Thanks to all of the contributors for making this possible!


