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
Pytest-lazyfixture does not support pytest >=8 and seems to be unmaintained.
A possible solution is to apply some of the fixes mentionned here: TvoroG/pytest-lazy-fixture#65
The text was updated successfully, but these errors were encountered:
Would this be an acceptable implementation?
@pytest.mark.parametrize("some_lazy_fixture_string", ["fixture_1", "fixture_2"]) def test_function(some_lazy_fixture_string, request): some_lazy_fixture_string = request.getfixturevalue(some_lazy_fixture_string) ...
The conftest.py custom lazy_fixture example seem a little magical, but that might just be my preference.
conftest.py
lazy_fixture
Sorry, something went wrong.
Hm this was actually fixed a while ago in #2801 but it looks like the issue never got closed.
No branches or pull requests
Pytest-lazyfixture does not support pytest >=8 and seems to be unmaintained.
A possible solution is to apply some of the fixes mentionned here:
TvoroG/pytest-lazy-fixture#65
The text was updated successfully, but these errors were encountered: