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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Romain Courteaud
erp5
Commits
e117eeac
Commit
e117eeac
authored
2 years ago
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
7 months ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: always copy custom_zodb.py, otherwise Python 3 incompatible one remains forever.
parent
7160a690
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
product/ERP5Type/tests/runUnitTest.py
product/ERP5Type/tests/runUnitTest.py
+7
-8
No files found.
product/ERP5Type/tests/runUnitTest.py
View file @
e117eeac
...
...
@@ -214,14 +214,13 @@ def initializeInstanceHome(tests_framework_home,
else
:
os
.
symlink
(
src
,
d
)
d
=
'custom_zodb.py'
if
not
os
.
path
.
exists
(
d
):
src
=
os
.
path
.
join
(
tests_framework_home
,
d
)
if
os
.
path
.
islink
(
d
):
os
.
remove
(
d
)
if
WIN
:
shutil
.
copy
(
src
,
d
)
else
:
os
.
symlink
(
src
,
d
)
src
=
os
.
path
.
join
(
tests_framework_home
,
d
)
if
os
.
path
.
exists
(
d
):
os
.
remove
(
d
)
if
WIN
:
shutil
.
copy
(
src
,
d
)
else
:
os
.
symlink
(
src
,
d
)
finally
:
os
.
chdir
(
old_pwd
)
...
...
This diff is collapsed.
Click to expand it.
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