We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b97dd05 commit 760260bCopy full SHA for 760260b
tests/conftest.py
@@ -36,6 +36,7 @@ def client(httpserver):
36
def file_client(tmp_path):
37
'''Instance of `dicomweb_client.api.DICOMwebClient`.'''
38
src_dir = Path(DATA_ROOT).resolve().joinpath('test_files')
39
- shutil.copytree(src_dir, tmp_path, dirs_exist_ok=True)
+ dst_dir = tmp_path.joinpath('test_files')
40
+ shutil.copytree(src_dir, dst_dir)
41
url = f'file://{tmp_path}'
42
return DICOMfileClient(url, recreate_db=True, in_memory=True)
0 commit comments