From b8954e2a1cb52684ff36827ad6058384a55dd3db Mon Sep 17 00:00:00 2001 From: Chris Dent Date: Wed, 30 Nov 2016 19:01:50 +0000 Subject: [PATCH] release 1.29.0 * allow pathnames when using <@ data loading syntax * add --verbose to gabbi-run * add a new technique for loading tests in pytest to avoid yield test warnings --- docs/source/format.rst | 2 ++ docs/source/gabbi.rst | 2 +- docs/source/release.rst | 14 ++++++++++++++ gabbi/__init__.py | 2 +- 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/docs/source/format.rst b/docs/source/format.rst index 71d7fc1..c1e44e4 100644 --- a/docs/source/format.rst +++ b/docs/source/format.rst @@ -261,6 +261,8 @@ to use the functionality. See also :doc:`example` for a collection of examples and the `gabbi-demo`_ tutorial. +.. _data: + Data ---- diff --git a/docs/source/gabbi.rst b/docs/source/gabbi.rst index 7880d0e..aae0852 100644 --- a/docs/source/gabbi.rst +++ b/docs/source/gabbi.rst @@ -58,7 +58,7 @@ gabbi Package :show-inheritance: :mod:`handlers.jsonhandler` Module -~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. automodule:: gabbi.handlers.jsonhandler :members: diff --git a/docs/source/release.rst b/docs/source/release.rst index b85655c..3588471 100644 --- a/docs/source/release.rst +++ b/docs/source/release.rst @@ -5,6 +5,20 @@ 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.29.0 +------ + +Filenames used to read data into tests using the ``<@`` syntax +may now use pathnames relative to the YAML file. See :ref:`data`. + +:doc:`gabbi-run ` gains a --verbose parameter to force +all tests run in a session to run with :ref:`verbose ` +set. + +When using :ref:`pytest ` to load tests, a new +mechanism is available which avoids warnings produced in when using +a version of pytest greater than ``3.0``. + 1.28.0 ------ diff --git a/gabbi/__init__.py b/gabbi/__init__.py index 8dc7411..35a5f60 100644 --- a/gabbi/__init__.py +++ b/gabbi/__init__.py @@ -12,4 +12,4 @@ # under the License. """See gabbi.driver and gabbbi.case.""" -__version__ = '1.28.0' +__version__ = '1.29.0'