Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Georgios Dagkakis
erp5
Commits
60c128b9
Commit
60c128b9
authored
Feb 04, 2013
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use subprocess.check_call, which will display error message
parent
04479bf2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
product/ERP5Type/tests/custom_zodb.py
product/ERP5Type/tests/custom_zodb.py
+6
-6
No files found.
product/ERP5Type/tests/custom_zodb.py
View file @
60c128b9
import
errno
import
os
import
subprocess
import
shutil
import
signal
import
socket
...
...
@@ -46,9 +47,8 @@ if save_mysql:
# faster, so this produce somewhat not nice to read sql
command
=
'mysqldump %s > %s'
%
(
getMySQLArguments
(),
dump_sql_path
,)
if
verbosity
:
_print
(
'Dumping MySQL database with %s...'
%
command
)
ret
=
os
.
system
(
command
)
assert
not
ret
_print
(
'Dumping MySQL database with %s ...'
%
command
)
subprocess
.
check_call
(
command
,
shell
=
True
)
_print
(
"Cleaning static files ... "
)
for
static_dir
in
static_dir_list
:
...
...
@@ -61,9 +61,9 @@ for static_dir in static_dir_list:
if
load
:
if
save_mysql
:
if
os
.
path
.
exists
(
dump_sql_path
):
_print
(
"Restoring MySQL database ... "
)
ret
=
os
.
system
(
"mysql %s < %s"
%
(
getMySQLArguments
(),
dump_sql_path
)
)
assert
not
ret
command
=
"mysql %s < %s"
%
(
getMySQLArguments
(),
dump_sql_path
)
_print
(
"Restoring MySQL database with %s ... "
%
command
)
subprocess
.
check_call
(
command
,
shell
=
True
)
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