1
0
Fork 0
mirror of https://github.com/mikegerber/ocrd_calamari.git synced 2025-06-09 19:59:53 +02:00

test: workaround for core#809

This commit is contained in:
Robert Sachunsky 2022-02-24 13:36:12 +01:00
parent 37ac602d72
commit 0f80198892

View file

@ -28,7 +28,12 @@ def workspace():
os.makedirs(WORKSPACE_DIR) os.makedirs(WORKSPACE_DIR)
resolver = Resolver() resolver = Resolver()
workspace = resolver.workspace_from_url(METS_KANT, dst_dir=WORKSPACE_DIR) # due to core#809 this does not always work:
#workspace = resolver.workspace_from_url(METS_KANT, dst_dir=WORKSPACE_DIR)
# workaround:
shutil.rmtree(WORKSPACE_DIR)
shutil.copytree(os.path.dirname(METS_KANT), WORKSPACE_DIR)
workspace = resolver.workspace_from_url(os.path.join(WORKSPACE_DIR, 'mets.xml'))
# The binarization options I have are: # The binarization options I have are:
# #