Merge pull request #74 from bertsky/fix-tests-again

test: workaround for core#809
fix/readme-no-checkpoint
Mike Gerber 2 years ago committed by GitHub
commit 85f5b685eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save