diff --git a/docs/source/format.rst b/docs/source/format.rst index 487f099..c12d3b2 100644 --- a/docs/source/format.rst +++ b/docs/source/format.rst @@ -277,6 +277,7 @@ All of these variables may be used in all of the following fields: * ``response_json_paths`` (on the value side of the key value pair) * ``response_headers`` (on the value side of the key value pair) * ``response_forbidden_headers`` +* ``count`` and ``delay`` fields of ``poll`` With these variables it ought to be possible to traverse an API without any explicit statements about the URLs being used. If you need a diff --git a/docs/source/release.rst b/docs/source/release.rst index a6d0929..58b5225 100644 --- a/docs/source/release.rst +++ b/docs/source/release.rst @@ -5,6 +5,14 @@ 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.33.0 +------ + +``count`` and ``delay`` test keys allow :ref:`substitutions +`. :meth:`gabbi.driver.build_tests` accepts +a ``verbose`` parameter to set test :ref:`verbosity ` for +an entire session. + 1.32.0 ------ diff --git a/gabbi/__init__.py b/gabbi/__init__.py index e2a0acc..4e5723d 100644 --- a/gabbi/__init__.py +++ b/gabbi/__init__.py @@ -12,4 +12,4 @@ # under the License. """See gabbi.driver and gabbbi.case.""" -__version__ = '1.32.0' +__version__ = '1.33.0' diff --git a/gabbi/driver.py b/gabbi/driver.py index c35ca8b..e26d5cc 100644 --- a/gabbi/driver.py +++ b/gabbi/driver.py @@ -64,7 +64,7 @@ def build_tests(path, loader, host=None, port=8001, intercept=None, :param require_ssl: If ``True``, make all tests default to using SSL. :param inner_fixtures: A list of ``Fixtures`` to use with each individual test request. - :param verbose: If ``True`` or ``'all'``, make fixtures verbose by default + :param verbose: If ``True`` or ``'all'``, make tests verbose by default ``'headers'`` and ``'body'`` are also accepted. :type inner_fixtures: List of fixtures.Fixture classes. :rtype: TestSuite containing multiple TestSuites (one for each YAML file).