Release 1.32.0

- Improved error reporting when using multiple files with gabbi-run
This commit is contained in:
Chris Dent 2017-02-06 13:28:42 +00:00
parent a1c7c82e69
commit d8fe9f801b
3 changed files with 13 additions and 1 deletions

View File

@ -5,6 +5,13 @@ These are informal release notes for gabbi since version 1.0.0,
highlighting major features and changes. For more detail see
the `commit logs`_ on GitHub.
1.32.0
------
Better failure reporting when using :doc:`gabbi-run <runner>` with
multiple files. Test names are based on the files and a summary of
failed files is provided at the end of the report.
1.31.0
------

View File

@ -29,6 +29,11 @@ used::
other arguments (host, port, prefix, failfast) must come
before the ``--``.
.. note:: If files are provided, test output will use names
including the name of the file. If any single file includes
an error, the name of the file will be included in a summary
of failed files at the end of the test report.
To facilitate using the same tests against the same application mounted
in different locations in a WSGI server, a ``prefix`` may be provided
as a second argument::

View File

@ -12,4 +12,4 @@
# under the License.
"""See gabbi.driver and gabbbi.case."""
__version__ = '1.31.0'
__version__ = '1.32.0'