From 8f742ec9a0c6abba2a4493f9b455a4a659c5c50f Mon Sep 17 00:00:00 2001 From: Sebastien Valat Date: Thu, 27 Aug 2026 10:26:12 +0200 Subject: [PATCH 1/2] doc: fix typo in test runner documentation (tests => test) --- doc/source/testing/testLauncher.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/testing/testLauncher.rst b/doc/source/testing/testLauncher.rst index febc0cb8..33b8e7ba 100644 --- a/doc/source/testing/testLauncher.rst +++ b/doc/source/testing/testLauncher.rst @@ -32,12 +32,12 @@ To run the test you can basically : # Run all tests ./test.py - # Run all tests in ./tests/HD - ./test.py -subdir=./tests/HD + # Run all tests in ./test/HD + ./test.py -subdir=./test/HD # Select in more details the tests containing the "single" keyword # See pytest documentation for the exact advanced semantic - ./test.py -subdir=./tests/HD -k single + ./test.py -subdir=./test/HD -k single # Run in verbose ./test.py -v From 0152528527512e5c2c56adc1886d5c34e6d45ea2 Mon Sep 17 00:00:00 2001 From: Sebastien Valat Date: Thu, 27 Aug 2026 16:27:57 +0200 Subject: [PATCH 2/2] test: fix issue when generating the .junit.xml report (the output stream is not there for failed tests). --- pytest.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytest.ini b/pytest.ini index 33a7f2a9..98983edc 100644 --- a/pytest.ini +++ b/pytest.ini @@ -2,5 +2,5 @@ markers= default: Test to run by default. python_files="test_*.py" -junit_logging="all" -junit_log_passing_tests=false +junit_logging=all +junit_log_passing_tests=False