From da3f836ee38991024ccb4e6140980389840a6e36 Mon Sep 17 00:00:00 2001 From: Jeffrey Rackauckas Date: Thu, 4 Apr 2019 20:26:48 -0700 Subject: [PATCH] Added the junit_log_passing_tests ini flag. --- changelog/4559.feature.rst | 1 + src/_pytest/junitxml.py | 12 ++++++++++++ testing/test_junitxml.py | 27 +++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 changelog/4559.feature.rst diff --git a/changelog/4559.feature.rst b/changelog/4559.feature.rst new file mode 100644 index 000000000..ff076aff5 --- /dev/null +++ b/changelog/4559.feature.rst @@ -0,0 +1 @@ +Added the ``junit_log_passing_tests`` ini value which can be used to enable and disable logging passing test output in the Junit XML file. diff --git a/src/_pytest/junitxml.py b/src/_pytest/junitxml.py index 122e0c7ce..faaa94d73 100644 --- a/src/_pytest/junitxml.py +++ b/src/_pytest/junitxml.py @@ -166,6 +166,9 @@ class _NodeReporter(object): self.append(node) def write_captured_output(self, report): + if not self.xml.log_passing_tests and report.passed: + return + content_out = report.capstdout content_log = report.caplog content_err = report.capstderr @@ -354,6 +357,12 @@ def pytest_addoption(parser): "one of no|system-out|system-err", default="no", ) # choices=['no', 'stdout', 'stderr']) + parser.addini( + "junit_log_passing_tests", + "Capture log information for passing tests to JUnit report: ", + type="bool", + default=True, + ) parser.addini( "junit_duration_report", "Duration time to report: one of total|call", @@ -377,6 +386,7 @@ def pytest_configure(config): config.getini("junit_logging"), config.getini("junit_duration_report"), config.getini("junit_family"), + config.getini("junit_log_passing_tests"), ) config.pluginmanager.register(config._xml) @@ -412,12 +422,14 @@ class LogXML(object): logging="no", report_duration="total", family="xunit1", + log_passing_tests=True, ): logfile = os.path.expanduser(os.path.expandvars(logfile)) self.logfile = os.path.normpath(os.path.abspath(logfile)) self.prefix = prefix self.suite_name = suite_name self.logging = logging + self.log_passing_tests = log_passing_tests self.report_duration = report_duration self.family = family self.stats = dict.fromkeys(["error", "passed", "failure", "skipped"], 0) diff --git a/testing/test_junitxml.py b/testing/test_junitxml.py index 769e8e8a7..07423eeb6 100644 --- a/testing/test_junitxml.py +++ b/testing/test_junitxml.py @@ -1245,3 +1245,30 @@ def test_escaped_skipreason_issue3533(testdir): snode = node.find_first_by_tag("skipped") assert "1 <> 2" in snode.text snode.assert_attr(message="1 <> 2") + + +def test_logging_passing_tests_disabled_does_not_log_test_output(testdir): + testdir.makeini( + """ + [pytest] + junit_log_passing_tests=False + junit_logging=system-out + """ + ) + testdir.makepyfile( + """ + import pytest + import logging + import sys + + def test_func(): + sys.stdout.write('This is stdout') + sys.stderr.write('This is stderr') + logging.warning('hello') + """ + ) + result, dom = runandparse(testdir) + assert result.ret == 0 + node = dom.find_first_by_tag("testcase") + assert len(node.find_by_tag("system-err")) == 0 + assert len(node.find_by_tag("system-out")) == 0