runall.py: call ./parse_results.py only after 10 seconds has elapsed, not after every test
This commit is contained in:
@@ -140,7 +140,7 @@ def main():
|
|||||||
cmd(COMMAND % locals())
|
cmd(COMMAND % locals())
|
||||||
if time()-last_time>PARSE_PERIOD:
|
if time()-last_time>PARSE_PERIOD:
|
||||||
os.system('./parse_results.py')
|
os.system('./parse_results.py')
|
||||||
last_time = PARSE_PERIOD
|
last_time = time()
|
||||||
os.system('./parse_results.py')
|
os.system('./parse_results.py')
|
||||||
|
|
||||||
if __name__=='__main__':
|
if __name__=='__main__':
|
||||||
|
Reference in New Issue
Block a user