Skip to content

Commit 8f12731

Browse files
cov-report=xml
1 parent a4016ee commit 8f12731

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,13 @@ class PyTest(TestCommand):
3232
def initialize_options(self):
3333
TestCommand.initialize_options(self)
3434
# pylint: disable=attribute-defined-outside-init
35-
self.pytest_args = ["--cov", "--junitxml", "./tests/output", "tests/"]
35+
self.pytest_args = [
36+
"--cov",
37+
"--cov-report=xml",
38+
"--junitxml",
39+
"./tests/output",
40+
"tests/",
41+
]
3642
self.lint = False
3743

3844
def finalize_options(self):

0 commit comments

Comments
 (0)