Skip to content
Snippets Groups Projects
Commit ee00ee5d authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Add test for 3D fingervein database

parent 72135a20
No related branches found
No related tags found
1 merge request!353DFV and multiple fixes
......@@ -31,3 +31,14 @@ def test_verafinger():
except IOError as e:
raise SkipTest(
"The database could not queried; probably the db.sql3 file is missing. Here is the error: '%s'" % e)
@db_available('fv3d')
def test_fv3d():
module = bob.bio.base.load_resource('fv3d', 'config',
preferred_package='bob.bio.vein')
try:
check_database(module.database, protocol='central', groups=('dev',))
except IOError as e:
raise SkipTest(
"The database could not queried; probably the db.sql3 file is missing. Here is the error: '%s'" % e)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment