Commit b05d653b authored by Ivan Tyagov's avatar Ivan Tyagov

Buildout complains that two sections can not write to same file (rightfully)...

Buildout complains that two sections can not write to same file (rightfully) thus rewrite in same section.
parent f4aa83a7
Pipeline #8708 failed with stage
in 0 seconds
...@@ -15,8 +15,6 @@ parts += ...@@ -15,8 +15,6 @@ parts +=
wendelin.core wendelin.core
jupyter jupyter
jupyter-notebook-initialized-scripts jupyter-notebook-initialized-scripts
wendelin_test_suite_runner
wendelin_testrunner
[eggs] [eggs]
initialization = initialization =
...@@ -43,21 +41,17 @@ initialization = ...@@ -43,21 +41,17 @@ initialization =
if rerun: os.environ['LD_PRELOAD'] = '''${gcc:location}/lib%s/libstdc++.so''' % arch if rerun: os.environ['LD_PRELOAD'] = '''${gcc:location}/lib%s/libstdc++.so''' % arch
if rerun: os.execve(os.path.realpath(__file__), sys.argv, os.environ) if rerun: os.execve(os.path.realpath(__file__), sys.argv, os.environ)
[wendelin_test_suite_runner] [test_suite_runner]
<= test_suite_runner
# we need to override the test suite runner to add our custom libstdc++ dynamic # we need to override the test suite runner to add our custom libstdc++ dynamic
# library to the path # library to the path
initialization = initialization +=
${generic_testrunner_init:initialization} ${generic_testrunner_init:initialization}
${test_suite_runner:initialization}
[wendelin_testrunner] [testrunner]
<= testrunner
# we need to override the test suite runner to add our custom libstdc++ dynamic # we need to override the test suite runner to add our custom libstdc++ dynamic
# library to the path # library to the path
initialization = initialization +=
${generic_testrunner_init:initialization} ${generic_testrunner_init:initialization}
${testrunner:initialization}
[erp5_repository_list] [erp5_repository_list]
repository_id_list += wendelin repository_id_list += wendelin
......
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