Skip to content

Commit

Permalink
Merge branch 'dsayling-patch-1'
Browse files Browse the repository at this point in the history
RELATED TO: pull #967, issue #641
  • Loading branch information
jenisys committed Jan 30, 2022
2 parents 2e547b0 + 67b5d18 commit 068bef3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@ FIXED:

* FIXED: Some tests related to python3.9
* FIXED: active-tag logic if multiple tags with same category exists.
* pull #967: Update __init__.py in behave import to fix pylint (provided by: dsayling)
* issue #955: setup: Remove attribute 'use_2to3' (submitted by: krisgesling)
* issue #772: ScenarioOutline.Examples without table (submitted by: The-QA-Geek)
* issue #755: Failures with Python 3.8 (submitted by: hroncok)
* issue #725: Scenario Outline description lines seem to be ignored (submitted by: nizwiz)
* issue #713: Background section doesn't support description (provided by: dgou)
* pull #657: Allow async steps with timeouts to fail when they raise exceptions (provided by: ALSchwalm)
* issue #641: Pylint errors when importing given - when - then from behave (solved by: #967)
* issue #631: ScenarioOutline variables not possible in table headings (provided by: mschnelle, pull #642)
* issue #619: Context __getattr__ should raise AttributeError instead of KeyError (submitted by: anxodio)
* pull #588: Steps-catalog argument should not break configured rerun settings (provided by: Lego3)
Expand Down
2 changes: 1 addition & 1 deletion behave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""

from __future__ import absolute_import
from behave.step_registry import * # pylint: disable=wildcard-import
from behave.step_registry import given, when, then, step, Given, When, Then, Step # pylint: disable=no-name-in-module
from behave.matchers import use_step_matcher, step_matcher, register_type
from behave.fixture import fixture, use_fixture
from behave.version import VERSION as __version__
Expand Down

0 comments on commit 068bef3

Please sign in to comment.