From 1c22d1932c4bc2dceb76521bd520a95ee30aed8e Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9dric=20Ollivier?= Date: Tue, 1 Oct 2024 17:43:12 +0200 Subject: [PATCH] Add no:cacheprovider by default MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Ic9df362d954d79e42f005089401bda6c951d2ccc Signed-off-by: Cédric Ollivier --- xtesting/core/pytest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/xtesting/core/pytest.py b/xtesting/core/pytest.py index a47ab551..84d8ac58 100644 --- a/xtesting/core/pytest.py +++ b/xtesting/core/pytest.py @@ -73,6 +73,7 @@ class Pytest(testcase.TestCase): options = kwargs.pop('options', {}) options['html'] = f'{self.res_dir}/results.html' options['junitxml'] = f'{self.res_dir}/results.xml' + options['p'] = 'no:cacheprovider' if 'tb' not in options: options['tb'] = 'no' options = [ -- 2.16.6