From 88ab453131b755057270f8f5ff6351f3b6add23a Mon Sep 17 00:00:00 2001 From: Edison Gustavo Muenz Date: Wed, 7 Dec 2016 17:55:25 -0200 Subject: [PATCH] Use XML in CAPS since beginning at Boost 1.61 the parameter value is case sensitive --- pytest_cpp/boost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest_cpp/boost.py b/pytest_cpp/boost.py index a436efd..649878d 100644 --- a/pytest_cpp/boost.py +++ b/pytest_cpp/boost.py @@ -42,7 +42,7 @@ def read_file(name): report_xml = os.path.join(temp_dir, 'report.xml') args = [ executable, - '--output_format=xml', + '--output_format=XML', '--log_sink=%s' % log_xml, '--report_sink=%s' % report_xml, ]