diff --git a/bob/bio/base/annotator/FailSafe.py b/bob/bio/base/annotator/FailSafe.py index ebeeb8ac69b61df5f3368785ce23d85d5129a4e9..4ba32ad673d088a7d8bdfffc9a2447dc835d488a 100644 --- a/bob/bio/base/annotator/FailSafe.py +++ b/bob/bio/base/annotator/FailSafe.py @@ -34,7 +34,7 @@ class FailSafe(Annotator): logger.debug( "The annotator `%s' failed to annotate!", annotator, exc_info=True) - annotations = {} + annotations = None if not annotations: logger.debug( "Annotator `%s' returned empty annotations.", annotator) @@ -44,5 +44,5 @@ class FailSafe(Annotator): break else: # this else is for the for loop # we don't want to return half of the annotations - kwargs['annotations'] = {} + kwargs['annotations'] = None return kwargs['annotations'] diff --git a/bob/bio/base/script/annotate.py b/bob/bio/base/script/annotate.py index 4df5c528719a3e66ef8a7b123ea205b72d17a412..e9dc135abbd6e42b19ac39e6d9f39fc709ae6965 100644 --- a/bob/bio/base/script/annotate.py +++ b/bob/bio/base/script/annotate.py @@ -77,9 +77,9 @@ def annotate(database, annotator, output_dir, force, array, **kwargs): outpath = biofile.make_path(output_dir, '.json') if isfile(outpath): if force: - logger.debug("Overwriting the annotations file `%s'", outpath) + logger.info("Overwriting the annotations file `%s'", outpath) else: - logger.debug("The annotation `%s' already exists", outpath) + logger.info("The annotation `%s' already exists", outpath) continue logger.info( diff --git a/bob/bio/base/test/dummy/annotator.py b/bob/bio/base/test/dummy/annotator.py index e58f6c62d3cc8c030100db4301de85ef70f3b113..7d1a968b189b3d0c680b59f0b878f7ff2fceda1e 100644 --- a/bob/bio/base/test/dummy/annotator.py +++ b/bob/bio/base/test/dummy/annotator.py @@ -1,3 +1,4 @@ +from random import random from bob.bio.base.annotator import FailSafe, Callable @@ -8,6 +9,13 @@ def simple_annotator(image, **kwargs): } +def moody_annotator(image, **kwargs): + annot = simple_annotator(image, **kwargs) + if random() < 0.5: + del annot['bottomright'] + return annot + + def fail_annotator(image, **kwargs): return {} diff --git a/bob/bio/base/test/test_annotators.py b/bob/bio/base/test/test_annotators.py index ee4cdc77f1872fffadc2a602c6f8f95b76909320..b8735b1e748e5c8d637fc429db3bfe3b1b551714 100644 --- a/bob/bio/base/test/test_annotators.py +++ b/bob/bio/base/test/test_annotators.py @@ -13,7 +13,13 @@ def test_annotate(): runner = CliRunner() result = runner.invoke(annotate, args=( '-d', 'dummy', '-a', 'dummy', '-o', tmp_dir)) - assert result.exit_code == 0, result.output + assertion_error_message = ( + 'Command exited with this output: `{}\' \n' + 'If the output is empty, you can run this script locally to see ' + 'what is wrong:\n' + 'bin/bob bio annotate -vvv --force -d dummy -a dummy -o /tmp/temp_annotations' + ''.format(result.output)) + assert result.exit_code == 0, assertion_error_message # test if annotations exist for dirpath, dirnames, filenames in os.walk(tmp_dir):