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
I have not looked to deep, but only found this:
src/pytest_cov/engine.py 108: stream.write('Coverage XML written to file %s\n' % self.cov.config.xml_output)
Therefore it appears that the output path can only be configured through the .coveragerc file.
.coveragerc
It would be nice if this could be passed in through an option to pytest-cov, e.g. --cov-xml-output=coverage2.xml.
--cov-xml-output=coverage2.xml
The text was updated successfully, but these errors were encountered:
That would overlap a bit with the --cov-report=xml option. Maybe --cov-report=xml should be implied if you use --cov-xml-output=coverage2.xml.
--cov-report=xml
What if we'd be allowed to use --cov-report=xml:coverage2.xml (or similar)?
--cov-report=xml:coverage2.xml
Sorry, something went wrong.
That sounds good, and something similar could also be done for --cov-report=html:htmlcov2
--cov-report=html:htmlcov2
👍
Actually this was fixed in #113.
No branches or pull requests
I have not looked to deep, but only found this:
Therefore it appears that the output path can only be configured through the
.coveragerc
file.It would be nice if this could be passed in through an option to pytest-cov, e.g.
--cov-xml-output=coverage2.xml
.The text was updated successfully, but these errors were encountered: