-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
PluginValidationError: unknown hook 'pytest_fixture_plus' #71
Comments
Thanks ! I was able to reproduce this. You can even reproduce the same bug by having a single line in from pytest_cases import pytest_fixture_plus
|
A quick workaround is to rename the symbol: import pytest
from pytest_cases import pytest_fixture_plus as fixture_plus
@fixture_plus(scope='module')
@pytest.mark.parametrize('name,description', [('cs', 'computer science')])
def domain(test_client, user, name, description):
pass |
Fixed in 1.12.1 - sorry for the deployment delay, I actually forgot to tag :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have installed
pytest_cases
, but when using it inconftest.py
:I get the following error:
I tried to upgrade
pluggy
, but this did not work.The text was updated successfully, but these errors were encountered: