Skip to content
Snippets Groups Projects
Commit 792b1fe9 authored by Manuel Günther's avatar Manuel Günther
Browse files

Made test cases less verbose

parent e8fcab5d
Branches
Tags
No related merge requests found
......@@ -6,8 +6,9 @@ def test_baselines():
# test that all of the baselines would execute
from bob.bio.face.script.baselines import available_databases, all_algorithms, main
with bob.bio.base.test.utils.Quiet():
for database in available_databases:
parameters = ['-d', database, '--dry-run', '-vv']
parameters = ['-d', database, '--dry-run']
main(parameters)
parameters.append('--grid')
main(parameters)
......@@ -15,7 +16,7 @@ def test_baselines():
main(parameters)
for algorithm in all_algorithms:
parameters = ['-a', algorithm, '--dry-run', '-vv']
parameters = ['-a', algorithm, '--dry-run']
main(parameters)
parameters.append('-g')
main(parameters)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment