diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2024-10-10 13:22:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2024-10-10 13:22:25 +0000 |
commit | a2af0f83d8fa597384046d11886d6201ef7d9d26 (patch) | |
tree | 22203ad158cc6f42b7394d782cf83805162c2cf4 /xtesting | |
parent | 1d6c7efb9374d0a3173fe1cd24481783ba7a24dc (diff) | |
parent | 9fe735c95723646fd864a6ec87f5f14608a8329d (diff) |
Merge "Add no:cacheprovider by default" into stable/2023.1
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 = [ |