runall.py: call ./parse_results.py only after 10 seconds has elapsed, not after every test

This commit is contained in:
Denis Bilenko
2008-11-24 15:07:22 +06:00
parent 736197ca52
commit 77a2c5516f

View File

@@ -140,7 +140,7 @@ def main():
cmd(COMMAND % locals())
if time()-last_time>PARSE_PERIOD:
os.system('./parse_results.py')
last_time = PARSE_PERIOD
last_time = time()
os.system('./parse_results.py')
if __name__=='__main__':