-
Notifications
You must be signed in to change notification settings - Fork 241
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
Add py as dependency #555
Add py as dependency #555
Conversation
This dependency was implicitely set through pytest. With [1] the dependency was removed from pytest, so pytest-html fails with: ModuleNotFoundError: No module named 'py.xml'; 'py' is not a package Specify it explicitely as dependency to fix the issue. [1] pytest-dev/pytest@19dda7c Signed-off-by: Erik Bloß <[email protected]>
@BeyondEvil lets release this as quick workaround and see to ensure the py.xml removal in a more sensible manner later |
We deployed this fix on our local devpi server and can confirm that this indeed fixes the crash. |
Any idea why tests are failing? |
v3.2.0 released |
There should probably an issue for that so it doesn't get lost? Or is there and I just didn't find it? |
There’s a project and a label: next-gen. Working on the last bits before putting an RC on pypi. |
Everyone is dropping py and we add it as a dependency... 🤕 |
Yeah, maybe instead of renaming the master branch, you could actually contribute towards v4 (next-gen) ? |
This issue still affects me with pytest-html
TESTING ROOTFS
|
@BrianOpteran You’ll either have to install py explicitly or start using 4.0.0rc4 |
This dependency was implicitely set through pytest. With [1] the dependency was removed from pytest, so pytest-html fails with:
ModuleNotFoundError: No module named 'py.xml'; 'py' is not a package
Specify it explicitely as dependency to fix the issue.
[1] pytest-dev/pytest@19dda7c
Signed-off-by: Erik Bloß [email protected]