Skip to content

Commit 888d395

Browse files
committed
Workaround for pytest.
1 parent 105da21 commit 888d395

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,13 @@ namespace_packages = true
3535
html_report = "report/typing"
3636

3737
[tool.pytest]
38-
addopts = ["--tb=native"]
38+
addopts = [
39+
"-ra",
40+
"--show-capture=all",
41+
"--tb=native",
42+
"--color=yes",
43+
"--junitxml=report/unit/UnittestReportSummary.xml"
44+
]
3945
# Don't set 'python_classes = *' otherwise, pytest doesn't search for classes
4046
# derived from unittest.Testcase
4147
python_files = ["*"]
@@ -44,7 +50,6 @@ filterwarnings = [
4450
"error::DeprecationWarning",
4551
"error::PendingDeprecationWarning"
4652
]
47-
junit_xml = "report/unit/UnittestReportSummary.xml"
4853
junit_logging = "all"
4954

5055
[tool.pyedaa-reports]

0 commit comments

Comments
 (0)