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'm using pytest-bdd 7.0.1 and was bumping my sub-dependencies. With Pytest 8 I started to get a warning caused by this line: https://github.com/pytest-dev/pytest-bdd/blob/7.0.1/src/pytest_bdd/steps.py#L211-L218
pytest-bdd
pytest.PytestDeprecationWarning: A private pytest class or function was used.
The root cause appears to be this change in Pytest.
The text was updated successfully, but these errors were encountered:
As of pytest 8.1.x this is now a hard fail as the internals have changed:
TypeError: FixtureDef.__init__() got an unexpected keyword argument 'fixturemanager'
Sorry, something went wrong.
I was about to open a new issue about the FixtureDef failure. Downgrading pytest to 8.0.2 seems to be the best option for now.
FixtureDef
Fixed in #680. I just released version 7.1.2 with the fix.
Note: You will still see the warning with pytest 8.0, but if you bump to 8.1 then you shouldn't see it anymore.
No branches or pull requests
I'm using
pytest-bdd
7.0.1 and was bumping my sub-dependencies. With Pytest 8 I started to get a warning caused by this line: https://github.com/pytest-dev/pytest-bdd/blob/7.0.1/src/pytest_bdd/steps.py#L211-L218The root cause appears to be this change in Pytest.
The text was updated successfully, but these errors were encountered: