Home | History | Annotate | Download | only in health

Lines Matching full:scripts

25         """Test that all the scripts passed in are called when they pass."""
26 scripts = [['script1.sh', 'arg'], ['script2.sh']]
34 check_test_health.run_prep_scripts(scripts)
38 """Test that True is returned when all the scripts succeed."""
39 scripts = [['script.sh']]
45 self.assertTrue(check_test_health.run_prep_scripts(scripts))
50 scripts = [['pass.py'], ['fail.sh', 'arg']]
60 check_test_health.run_prep_scripts(scripts)
65 scripts = [['script.sh']]
72 self.assertFalse(check_test_health.run_prep_scripts(scripts))
76 """Test that the other prep scripts are not ran if one fails."""
77 scripts = [['script1.sh', 'arg'], ['script2.sh']]
84 check_test_health.run_prep_scripts(scripts)
99 """Test that all the scripts passed in are called when they pass."""
100 scripts = [['script1.sh', 'arg'], ['script2.sh']]
108 check_test_health.run_analysis_scripts(scripts)
112 """Test that True is returned when all the scripts succeed."""
113 scripts = [['script.sh']]
119 self.assertTrue(check_test_health.run_analysis_scripts(scripts))
124 scripts = [['pass.py'], ['fail.sh', 'arg']]
134 check_test_health.run_analysis_scripts(scripts)
139 scripts = [['script.sh']]
146 self.assertFalse(check_test_health.run_analysis_scripts(scripts))
150 """Test that the other analysis scripts are ran even if one fails."""
151 scripts = [['script1.sh', 'arg'], ['script2.sh']]
160 check_test_health.run_analysis_scripts(scripts)