behave icon indicating copy to clipboard operation
behave copied to clipboard

BDD, Python style.

Results 151 behave issues
Sort by recently updated
recently updated
newest added

Hi @jenisys , I've recently noticed that we can't pass a `defaults` dictionary to `logging.config.fileConfig()` via `context.config.setup_logging()`. It would nice if we could do so, as it would allow us...

The JUnit XML output logic just puts all log output into a CDATA section without handling characters that are illegal in XML (like control characters), This will for example happen...

minor

Support combinatorial testing in Scenario Outline. This would greatly simplify feature files maintainability when implementing large acceptance tests. There is always option to do the combinations by hand, but it...

Hello, I'm trying to create a before_scenario method that logs in a different user from the Examples table at the beginning of each Scenario. Feature file: ```gherkin Feature: Ad-hoc flow...

question

I was trying to use multiple stages at a single line. My directory structure: ``` features/ +-- foo_steps/ | +-- foo.py +-- bar_steps/ | +-- bar.py +-- foo_environment.py +-- bar_environment.py...

question

We've had some feedback from within our community that they're worried about contributing to Behave because they're not sure whether the project is maintained anymore, and whether their changes would...

The `--tags-help` text clearly states: > The `--tags` option can be specified several times, and this represents logical AND However the concatenation is done quite poorly and yields incorrect statements:...

executing "behave feature:line" brings to exception when feature file contains at least one scenario without examples: ``` Exception TypeError: 'NoneType' object is not iterable Traceback (most recent call last): File...

not-reproducible

Is this something that could be added to behave? This is to resolve issue with using `mypy` on behave tests: ``` Skipping analyzing "behave": module is installed, but missing library...

I want to add a check after each step of my test suite to make sure there are no apparmor DENIED messages in the logs. So instead of adding such...