Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5_fork
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
erp5_fork
Commits
6f69c3ba
Commit
6f69c3ba
authored
Dec 15, 2014
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests: print the time taken to load mysql dump
parent
f68bb542
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
product/ERP5Type/tests/custom_zodb.py
product/ERP5Type/tests/custom_zodb.py
+2
-0
No files found.
product/ERP5Type/tests/custom_zodb.py
View file @
6f69c3ba
...
...
@@ -53,7 +53,9 @@ if load:
if
os
.
path
.
exists
(
dump_sql_path
):
command
=
"mysql %s < %s"
%
(
getMySQLArguments
(),
dump_sql_path
)
_print
(
"Restoring MySQL database with %s ... "
%
command
)
_start
=
time
.
time
()
subprocess
.
check_call
(
command
,
shell
=
True
)
_print
(
'done (%.3fs)
\
n
'
%
(
time
.
time
()
-
_start
))
else
:
_print
(
"Could not find MySQL dump (%r), will recreate catalog ... "
%
dump_sql_path
)
os
.
environ
[
'erp5_tests_recreate_catalog'
]
=
'1'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment