From 84b29940c58f8acc7c5540b41bf809bebf594c4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Gonz=C3=A1lez=20Alonso?= Date: Sun, 7 Jan 2018 20:52:17 +0100 Subject: [PATCH] Release Toolium 1.4.0 --- CHANGELOG.rst | 2 +- VERSION | 2 +- docs/bdd_integration.rst | 14 ++++++++++++-- docs/conf.py | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0504aba1..8c81ce60 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,7 +4,7 @@ Toolium Changelog v1.4.0 ------ -*Release date: In development* +*Release date: 2018-02-04* - Add pytest fixtures to start and stop drivers - New config property 'reuse_driver_session' in [Driver] section to use the same driver in all tests diff --git a/VERSION b/VERSION index c3f0d2bb..88c5fb89 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.0-dev +1.4.0 diff --git a/docs/bdd_integration.rst b/docs/bdd_integration.rst index 91f90249..46f201bb 100644 --- a/docs/bdd_integration.rst +++ b/docs/bdd_integration.rst @@ -16,14 +16,20 @@ example: .. code-block:: python - from toolium.behave.environment import (before_all as toolium_before_all, before_scenario as toolium_before_scenario, - after_scenario as toolium_after_scenario, after_all as toolium_after_all) + from toolium.behave.environment import (before_all as toolium_before_all, before_feature as toolium_before_feature, + before_scenario as toolium_before_scenario, + after_scenario as toolium_after_scenario, + after_feature as toolium_after_feature, after_all as toolium_after_all) def before_all(context): toolium_before_all(context) + def before_feature(context, feature): + toolium_before_feature(context, feature) + + def before_scenario(context, scenario): toolium_before_scenario(context, scenario) @@ -32,6 +38,10 @@ example: toolium_after_scenario(context, scenario) + def after_feature(context, feature): + toolium_after_feature(context, feature) + + def after_all(context): toolium_after_all(context) diff --git a/docs/conf.py b/docs/conf.py index 5c550f9a..efb2b4ec 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,7 +70,7 @@ # General information about the project. project = u'Toolium' -copyright = u'2015-2017, Telefónica I+D' +copyright = u'2015-2018, Telefónica I+D' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the