Skip to content

Commit

Permalink
Merge pull request #90 from Telefonica/doc/properties
Browse files Browse the repository at this point in the history
Release Toolium 1.4.0
  • Loading branch information
rgonalo committed Feb 4, 2018
2 parents 3a88d6e + 84b2994 commit 8b70aaa
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0-dev
1.4.0
14 changes: 12 additions & 2 deletions docs/bdd_integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8b70aaa

Please sign in to comment.