Home | History | Annotate | Download | only in health

Lines Matching full:scripts

14 # The list of scripts are passed as lists as this allows us to add arguments
15 # as the list is just passed to subprocess.call(). We expect the scripts to
18 # Scripts that need to be ran first to do any preperation. E.g. update the
26 # Scripts ran to do the analysis.
33 def run_prep_scripts(scripts):
35 Run the scripts that are required to be ran before the analysis.
39 @param scripts: A list of lists. Where the inner list is the script name
42 @return True if all the scripts succeeded and False otherwise.
46 for script in scripts:
57 def run_analysis_scripts(scripts):
59 Run the scripts that analyze the database.
61 All scripts are ran even if one fails.
63 @param scripts: A list of lists, where the inner list is the script name
66 @return True if all the scripts succeeded and False otherwise.
72 for script in scripts:
86 description = ('Runs test health and preparation scripts.')