We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to use parameterized fixture in my pytest-bdd framework. Normal fixture works fine. But If I am passing parameters, it gives below error
""The requested fixture has no parameter defined for test:""
Below is my code(Sample). Waht is the correct usage here?
@pytest.fixture(params=[1,2]) def ba_data(request): print("this is fixture") return request.param
@given(parsers.cfparse('Collect testdata')) def required_data(ba_data): print(ba_data)
actual need behind this: I wanted to run entrire scenario multiple times, with dynamically generated data
The text was updated successfully, but these errors were encountered:
I'm getting this same issue using pytest-cases
pytest-cases
Sorry, something went wrong.
No branches or pull requests
I am trying to use parameterized fixture in my pytest-bdd framework. Normal fixture works fine. But If I am passing parameters, it gives below error
""The requested fixture has no parameter defined for test:""
Below is my code(Sample). Waht is the correct usage here?
@pytest.fixture(params=[1,2])
def ba_data(request):
print("this is fixture")
return request.param
@given(parsers.cfparse('Collect testdata'))
def required_data(ba_data):
print(ba_data)
actual need behind this:
I wanted to run entrire scenario multiple times, with dynamically generated data
The text was updated successfully, but these errors were encountered: