We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105da21 commit 888d395Copy full SHA for 888d395
1 file changed
pyproject.toml
@@ -35,7 +35,13 @@ namespace_packages = true
35
html_report = "report/typing"
36
37
[tool.pytest]
38
-addopts = ["--tb=native"]
+addopts = [
39
+ "-ra",
40
+ "--show-capture=all",
41
+ "--tb=native",
42
+ "--color=yes",
43
+ "--junitxml=report/unit/UnittestReportSummary.xml"
44
+]
45
# Don't set 'python_classes = *' otherwise, pytest doesn't search for classes
46
# derived from unittest.Testcase
47
python_files = ["*"]
@@ -44,7 +50,6 @@ filterwarnings = [
50
"error::DeprecationWarning",
51
"error::PendingDeprecationWarning"
52
]
-junit_xml = "report/unit/UnittestReportSummary.xml"
48
53
junit_logging = "all"
49
54
55
[tool.pyedaa-reports]
0 commit comments