diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-10-01 17:43:12 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-10-10 15:31:08 +0200 |
commit | bd9d085263d9f6705bb48749870f43bceefb205e (patch) | |
tree | 791bd0de402fa5ebc4488d1bd4e71a7404efe414 /xtesting | |
parent | 0639102a106316c1318c7652d945361727dee4b8 (diff) |
Add no:cacheprovider by default
Change-Id: Ic9df362d954d79e42f005089401bda6c951d2ccc
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 1c22d1932c4bc2dceb76521bd520a95ee30aed8e)
Diffstat (limited to 'xtesting')
-rw-r--r-- | xtesting/core/pytest.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 = [ |