diff --git a/tests/api/test_creator.py b/tests/api/test_creator.py index 85e1044..6ab295c 100644 --- a/tests/api/test_creator.py +++ b/tests/api/test_creator.py @@ -244,7 +244,7 @@ async def test_create_tentacles_package_in_previous_dir(install_tentacles): in_zip=True, use_package_as_file_name=True) == 0 assert os.path.exists(expected_file_path) - os.remove(expected_file_path) + # os.remove(expected_file_path) # with default output_dir file_path: str = "../test2.zip" @@ -253,7 +253,7 @@ async def test_create_tentacles_package_in_previous_dir(install_tentacles): in_zip=True, use_package_as_file_name=True) == 0 assert os.path.exists(expected_file_path) - os.remove(expected_file_path) + # os.remove(expected_file_path) def assert_directory_has_file_with_content(directory_to_check, expected_file, expected_content):