From ed61c53f85c9dcb5a5a3029c84d50100028d5e63 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9dric=20Ollivier?= Date: Thu, 10 Oct 2024 14:33:24 +0200 Subject: [PATCH] Clean res dir before running pytest MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Pytest fails when rerun Change-Id: I957955300b2ef65bd1c5fdb28869921bca34ac57 Signed-off-by: Cédric Ollivier --- xtesting/core/pytest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xtesting/core/pytest.py b/xtesting/core/pytest.py index 84d8ac58..a6735f17 100644 --- a/xtesting/core/pytest.py +++ b/xtesting/core/pytest.py @@ -12,6 +12,8 @@ import contextlib import io import logging +import os +import shutil import time import pytest @@ -69,6 +71,8 @@ class Pytest(testcase.TestCase): status = self.EX_RUN_ERROR self.start_time = time.time() try: + if os.path.exists(os.path.join(self.dir_results, self.case_name)): + shutil.rmtree(os.path.join(self.dir_results, self.case_name)) pydir = kwargs.pop('dir') options = kwargs.pop('options', {}) options['html'] = f'{self.res_dir}/results.html' -- 2.16.6