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 14:37:04 +0200 |
commit | 4ed41c8b7767ab6b87081b1837f58885828262ac (patch) | |
tree | 4cea3e413877d60f41799487a3e509df9a31cc91 | |
parent | 0356f37a33d115c58d2b5922fe898da209b4147c (diff) |
Add no:cacheprovider by default
Change-Id: Ic9df362d954d79e42f005089401bda6c951d2ccc
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 1c22d1932c4bc2dceb76521bd520a95ee30aed8e)
-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 = [ |