Skip to content

Commit 291db20

Browse files
committed
update test
1 parent a8f8af2 commit 291db20

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

sdk/python/test/local_execution/local_execution_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,9 @@ def test_execution(self, test_data: TestData):
256256
if test_data.name == 'Importer Workspace':
257257
ws_root = f'{ws_root_base}_docker'
258258
pipeline_root = f'{pipeline_root_base}_docker'
259+
if os.path.isdir(ws_root):
260+
shutil.rmtree(ws_root, ignore_errors=True)
261+
Path(ws_root).mkdir(parents=True, exist_ok=True)
259262
local.init(
260263
runner=local.DockerRunner(user=f'{os.getuid()}'),
261264
raise_on_error=True,

0 commit comments

Comments
 (0)