Commit 6f69c3ba authored by Jérome Perrin's avatar Jérome Perrin

Tests: print the time taken to load mysql dump

parent f68bb542
...@@ -53,7 +53,9 @@ if load: ...@@ -53,7 +53,9 @@ if load:
if os.path.exists(dump_sql_path): if os.path.exists(dump_sql_path):
command = "mysql %s < %s" % (getMySQLArguments(), dump_sql_path) command = "mysql %s < %s" % (getMySQLArguments(), dump_sql_path)
_print("Restoring MySQL database with %s ... " % command) _print("Restoring MySQL database with %s ... " % command)
_start = time.time()
subprocess.check_call(command, shell=True) subprocess.check_call(command, shell=True)
_print('done (%.3fs)\n' % (time.time() - _start))
else: else:
_print("Could not find MySQL dump (%r), will recreate catalog ... " % dump_sql_path) _print("Could not find MySQL dump (%r), will recreate catalog ... " % dump_sql_path)
os.environ['erp5_tests_recreate_catalog'] = '1' os.environ['erp5_tests_recreate_catalog'] = '1'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment