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-01 17:43:12 +0200 |
commit | 1c22d1932c4bc2dceb76521bd520a95ee30aed8e (patch) | |
tree | 800f711b2bde7bf9e37f521322495d6b9f92d2b7 /xtesting/core/pytest.py | |
parent | d5633620355eec4d6af27136fa57dc693811fb8a (diff) |
Add no:cacheprovider by default
Change-Id: Ic9df362d954d79e42f005089401bda6c951d2ccc
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
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 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 = [ |