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
[16:42:05][Step 3/4] Coverage statistics reporting failed Traceback (most recent call last): File "/opt/buildagent/work/13fee7d45aa6a432/.tox/testenv/.venv/lib/python3.8/site-packages/teamcity/pytest_plugin.py", line 335, in pytest_terminal_summary self._report_coverage() File "/opt/buildagent/work/13fee7d45aa6a432/.tox/testenv/.venv/lib/python3.8/site-packages/teamcity/pytest_plugin.py", line 427, in _report_coverage reporter = _CoverageReporter( File "/opt/buildagent/work/13fee7d45aa6a432/.tox/testenv/.venv/lib/python3.8/site-packages/teamcity/pytest_plugin.py", line 372, in __init__ super(_CoverageReporter, self).__init__(coverage, config) File "/opt/buildagent/work/13fee7d45aa6a432/.tox/testenv/.venv/lib/python3.8/site-packages/teamcity/pytest_plugin.py", line 362, in __init__ self._reporter = Reporter(coverage, config) TypeError: Reporter() takes no arguments
This is because coverage.report module now contains Reporter class which inherits from typing.Protocol.
coverage.report
typing.Protocol
The text was updated successfully, but these errors were encountered:
Nice patch version 7.0.1 -> 7.0.2! 😄 nedbat/coveragepy@e3c523c#diff-d11c5e441d59ed59bc74058b8a78ae110cf2598939c8b5d2e37799a1904accd6
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This is because
coverage.report
module now contains Reporter class which inherits fromtyping.Protocol
.The text was updated successfully, but these errors were encountered: