Pytest fails when rerun
Change-Id: I957955300b2ef65bd1c5fdb28869921bca34ac57
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
import contextlib
import io
import logging
+import os
+import shutil
import time
import pytest
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'