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:
parent
37ac602d72
commit
0f80198892
1 changed files with 6 additions and 1 deletions
|
@ -28,7 +28,12 @@ def workspace():
|
|||
os.makedirs(WORKSPACE_DIR)
|
||||
|
||||
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:
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue