Skip to content

Commit f6fa622

Browse files
committed
test(conftest): move (not copy) vm artifacts
This is to keep free space in the /srv filesystem. Signed-off-by: Nikita Kalyazin <[email protected]>
1 parent e94b72b commit f6fa622

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def microvm_factory(request, record_property, results_dir, netns_factory):
337337
if not os.path.isfile(src):
338338
continue
339339
dst = uvm_data / item
340-
shutil.copy(src, dst)
340+
shutil.move(src, dst)
341341
console_data = uvm.console_data
342342
if console_data:
343343
uvm_data.joinpath("guest-console.log").write_text(console_data)

0 commit comments

Comments
 (0)