diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2024-10-10 13:21:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2024-10-10 13:21:25 +0000 |
commit | b5233ac9479689c1445b7b5d1b58dde4a82ed0a1 (patch) | |
tree | 98d10d9d90d2df48b665659bf3dea822a19deac6 /xtesting | |
parent | 93620a5db1bb5f0b71f8c49603ab04a457921060 (diff) | |
parent | 62067e6ef3f1c941accb2eed2b95d889341a2332 (diff) |
Merge "Add no:cacheprovider by default" into stable/2023.2
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 = [ |