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:35:57 +0200 |
commit | 9fe735c95723646fd864a6ec87f5f14608a8329d (patch) | |
tree | 5d26448ca63c31e504bb28429fb55d09d86328ee /xtesting/core/pytest.py | |
parent | 77f6cad5cd897429e5207bc85e546869233d35b6 (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/core/pytest.py')
-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 1dadf300..93e58211 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 = [ |