From d8fe9f801b03adbb296191baf9055fde4a398802 Mon Sep 17 00:00:00 2001 From: Chris Dent Date: Mon, 6 Feb 2017 13:28:42 +0000 Subject: [PATCH] Release 1.32.0 - Improved error reporting when using multiple files with gabbi-run --- docs/source/release.rst | 7 +++++++ docs/source/runner.rst | 5 +++++ gabbi/__init__.py | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/source/release.rst b/docs/source/release.rst index 1e9616d..a6d0929 100644 --- a/docs/source/release.rst +++ b/docs/source/release.rst @@ -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 ` 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 ------ diff --git a/docs/source/runner.rst b/docs/source/runner.rst index a468bf6..b75c320 100644 --- a/docs/source/runner.rst +++ b/docs/source/runner.rst @@ -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:: diff --git a/gabbi/__init__.py b/gabbi/__init__.py index 930c59c..e2a0acc 100644 --- a/gabbi/__init__.py +++ b/gabbi/__init__.py @@ -12,4 +12,4 @@ # under the License. """See gabbi.driver and gabbbi.case.""" -__version__ = '1.31.0' +__version__ = '1.32.0'