We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4016ee commit 8f12731Copy full SHA for 8f12731
1 file changed
setup.py
@@ -32,7 +32,13 @@ class PyTest(TestCommand):
32
def initialize_options(self):
33
TestCommand.initialize_options(self)
34
# pylint: disable=attribute-defined-outside-init
35
- self.pytest_args = ["--cov", "--junitxml", "./tests/output", "tests/"]
+ self.pytest_args = [
36
+ "--cov",
37
+ "--cov-report=xml",
38
+ "--junitxml",
39
+ "./tests/output",
40
+ "tests/",
41
+ ]
42
self.lint = False
43
44
def finalize_options(self):
0 commit comments