Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
\.DS_Store
*.rej
*.py[cod]
/.env
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

2.16.0
------

- Depends on pytest 2.8 and fixes the registration of hooks (olegpidsadnyi)


2.15.0
------

Expand Down
2 changes: 1 addition & 1 deletion pytest_bdd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
from pytest_bdd.steps import given, when, then
from pytest_bdd.scenario import scenario, scenarios

__version__ = '2.15.0'
__version__ = '2.16.0'

__all__ = [given.__name__, when.__name__, then.__name__, scenario.__name__, scenarios.__name__]
2 changes: 1 addition & 1 deletion pytest_bdd/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
def pytest_addhooks(pluginmanager):
"""Register plugin hooks."""
from pytest_bdd import hooks
pluginmanager.addhooks(hooks)
pluginmanager.add_hookspecs(hooks)


@given('trace')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def run_tests(self):
"Mako",
"parse",
"parse_type",
"pytest>=2.6.0",
"pytest>=2.8.0",
"six>=1.9.0",
],
# the following makes a plugin available to py.test
Expand Down