mirror of
https://github.com/mikegerber/ocrd_calamari.git
synced 2025-07-02 23:19:53 +02:00
✔ Do not delete test workspace when DEBUG env variable is set
This commit is contained in:
parent
2997a471f5
commit
23821cba57
1 changed files with 3 additions and 1 deletions
|
@ -16,6 +16,7 @@ from .base import assets
|
||||||
METS_KANT = assets.url_of('kant_aufklaerung_1784-page-region-line-word_glyph/data/mets.xml')
|
METS_KANT = assets.url_of('kant_aufklaerung_1784-page-region-line-word_glyph/data/mets.xml')
|
||||||
WORKSPACE_DIR = tempfile.mkdtemp(prefix='test-ocrd-calamari-')
|
WORKSPACE_DIR = tempfile.mkdtemp(prefix='test-ocrd-calamari-')
|
||||||
CHECKPOINT_DIR = os.getenv('MODEL')
|
CHECKPOINT_DIR = os.getenv('MODEL')
|
||||||
|
DEBUG = os.getenv('DEBUG', False)
|
||||||
|
|
||||||
|
|
||||||
def page_namespace(tree):
|
def page_namespace(tree):
|
||||||
|
@ -83,6 +84,7 @@ def workspace():
|
||||||
|
|
||||||
yield workspace
|
yield workspace
|
||||||
|
|
||||||
|
if not DEBUG:
|
||||||
shutil.rmtree(WORKSPACE_DIR)
|
shutil.rmtree(WORKSPACE_DIR)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue