-
Notifications
You must be signed in to change notification settings - Fork 47
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
AttributeError: 'mpl_image_compare' not a registered marker #69
Comments
I am getting the same error and my pytest version is 4.0.2. Not sure how to solve this problem either 😕 |
That's interesting. I'm not seeing this problem with pytest 4.4 and pytest-mpl 0.10. |
After adding |
To clarify the above fix for those still getting on their feet with pytst, the relevant section of my setup.cfg looks like this:
|
…remove - Fixes "PytestUnknownMarkWarning: Unknown pytest.mark.mpl_image_compare" related to this issue matplotlib/pytest-mpl#69
When I try to use pytest-mpl on py.test version 3.4.2 I get the above error. After some googling, I realized that I could solve the problem by adding the following line as the first line in plugin.py/pytest_configure(), line 99
config.addinivalue_line('markers', "mpl_image_compare: Compares images from matplotlib")
I have not found out if there is a recent change in pytest or if something else is going on but it works for me...
The text was updated successfully, but these errors were encountered: