-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathtry_install_all.py
53 lines (44 loc) · 1.59 KB
/
try_install_all.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""Attempt to install all datasets into all database management systems
This module, when run, attempts to install datasets from all Retriever scripts
in the /scripts folder (except for those listed in IGNORE), for each engine in
ENGINE_LIST() from __init__.py. In other words, it runs trys to install using
all possible combinations of database platform and script and checks to
see if there are any errors. It does not check the values in the database.
"""
import os
from retriever.lib.tools import choose_engine
from retriever import MODULE_LIST, ENGINE_LIST, SCRIPT_LIST
MODULE_LIST = MODULE_LIST()
ENGINE_LIST = ENGINE_LIST()
SCRIPT_LIST = SCRIPT_LIST()
TEST_ENGINES = {}
IGNORE = ["AvianBodyMass", "FIA"]
for engine in ENGINE_LIST:
opts = {}
print "** %s **" % engine.name
opts["engine"] = engine.abbreviation
try:
TEST_ENGINES[engine.abbreviation] = choose_engine(opts)
TEST_ENGINES[engine.abbreviation].get_cursor()
except:
TEST_ENGINES[engine.abbreviation] = None
pass
errors = []
for module in MODULE_LIST:
for (key, value) in TEST_ENGINES.items():
if value and not module.SCRIPT.shortname in IGNORE:
print "==>", module.__name__, value.name
try:
module.SCRIPT.download(value)
except KeyboardInterrupt:
pass
except Exception as e:
print "ERROR."
errors.append((key, module.__name__, e))
print('')
if errors:
print("Engine, Dataset, Error")
for error in errors:
print(error)
else:
print("All tests passed")