Commit 25161f14 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Jérome Perrin

test: always copy custom_zodb.py, otherwise Python 3 incompatible one remains forever.

parent 290a33c4
...@@ -214,9 +214,8 @@ def initializeInstanceHome(tests_framework_home, ...@@ -214,9 +214,8 @@ def initializeInstanceHome(tests_framework_home,
else: else:
os.symlink(src, d) os.symlink(src, d)
d = 'custom_zodb.py' d = 'custom_zodb.py'
if not os.path.exists(d):
src = os.path.join(tests_framework_home, d) src = os.path.join(tests_framework_home, d)
if os.path.islink(d): if os.path.exists(d):
os.remove(d) os.remove(d)
if WIN: if WIN:
shutil.copy(src, d) shutil.copy(src, d)
......
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