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
Thanks for the rewrite and a revamped report in the pytest-html!
I noticed that the collection errors are not reported as part of pytest-html v4 but they were reported till pytest-html==3.2.0
Reproducer:
test_sample.py
import pytest raise ImportError("Non existent module")
Run:
pytest test_sample.py --html=~/tmp/generated_html.html
pytest-html == 3.2.0:
pytest-html == 4.0.3rc0:
Looking at the codebase, I can see that pytest_collectreport got missed out during the rewrite, so maybe adding that back should fix this.
pytest_collectreport
The text was updated successfully, but these errors were encountered:
One more for pytest-html 4.0.3 :) - @BeyondEvil
pytest-html 4.0.3
Sorry, something went wrong.
Oh, nice! We had indeed missed that.
Thanks for bringing it up!
Mind checking the PR @akhilramkee ?
Successfully merging a pull request may close this issue.
Thanks for the rewrite and a revamped report in the pytest-html!
I noticed that the collection errors are not reported as part of pytest-html v4 but they were reported till pytest-html==3.2.0
Reproducer:
test_sample.py
Run:
pytest-html == 3.2.0:
pytest-html == 4.0.3rc0:
Looking at the codebase, I can see that
pytest_collectreport
got missed out during the rewrite, so maybe adding that back should fix this.The text was updated successfully, but these errors were encountered: