pytest-bdd
pytest-bdd copied to clipboard
BDD library for the py.test runner
[Gherkin Documentation mentions](https://cucumber.io/docs/gherkin/reference/#Asterisk) you can uses `*` (asterisk) to describe lists of things, same way as with `And` steps: ```gherkin Scenario: All done Given I am out shopping * I...
Thanks for a great project!! :wave: According to the README for cucumber-js, the `json` formatter is in "maintenance" mode and seems to be slightly discouraged: https://github.com/cucumber/cucumber-js/blob/main/docs/formatters.md#json > Note: this formatter...
The bug is mentioned in the issue #607. This is a sample implementation trying minimal invasive by implementing a new function that retrieves all arguments with default values. Another solution...
Another start at #223. It seems as though some of the previous cracks at it have stalled, and with there being some significant changes to the baseline overall since those...
**Environment:** WSL 2 x86_64 GNU/Linux: version = "20.04.5 LTS (Focal Fossa)" pytest==7.3.0 pytest-bdd==6.1.1 Python version: 3.8.10 **Reproducing the bug:** Notice how the two different "When" statements in the new_feature.feature file...
Hey there, first of all thanks a lot for this amazing project, I really love working with it. :) ### Describe the situation I'm trying to reuse my fixtures /...
I am trying to generate reports post execution of all tests but Pytest bdd is executing code in Pytest unconfigure method and session finish multiple times. So it is generating...
I have a feature defined like so: ```gherkin Feature: Eating bananas Scenario Outline: Outlined given, when, then Given there are bananas When I eat bananas Then I should have bananas...