pytest-bdd icon indicating copy to clipboard operation
pytest-bdd copied to clipboard

BDD library for the py.test runner

Results 165 pytest-bdd issues
Sort by recently updated
recently updated
newest added
trafficstars

I will need this for the tatsu-parser branch.

Steps to reproduce 1. Within a Pytest feature file try to have a scenario outline 2. Within example (just take example for a login page) as discussed 3.Scenario Outline: Login...

We should use doctest (via pytest) to check that examples ~in README.rst~ docstrings in general are always working.

Following the suggestion from issue #296, I will try to re-implement pytest-bdd to use [marks](https://docs.pytest.org/en/latest/mark.html) and [hooks](https://docs.pytest.org/en/latest/writing_plugins.html#writinghooks). I imagine an API that will look like this: ```python # test_some_scenario.py pytestmark...

Two scenarios steps use same fixture and second step should get value from example table but does not @cucumber-basket Feature: Cucumber Basket As a gardener, I want to carry cucumbers...

As mentioned in #476, this PR implements a simple parser for printing the tags in the verbose gherkin terminal reporter.

Hello, support for datatables would be a big help. See following example from the cucumber reference. https://cucumber.io/docs/reference#data-tables Thanks a lot.

As we known, BDD tests are much better if written in domain language. This means multi-language gherkin support is a top feature. I coudn´t find `pytest-bdd` documentation about support to...

Hello, I've tried the following: **login.feature** ``` #language: pt #encoding: UTF-8 Funcionalidade: Login no Programa Cenário: O usuário ainda não é cadastrado Dado que o usuário esteja na tela de...

It'd be nice to have support for the [Rule](https://cucumber.io/docs/gherkin/reference/#rule) keyword and update for `Background` to support rule level declarations. Has anyone started on this? For now global declarations of `Rule`...

feature