Commit ae7e7123 authored by Jérome Perrin's avatar Jérome Perrin

test: unset MAKEFLAGS from parent environment

Our test infrastructure inherits MAKEFLAGS=-j12 which cause test for
make-targets ( which does `make install install-lib` ) to output sometimes:

    installing patched package
    installing patched package-lib

and sometimes

    installing patched package-lib
    installing patched package

because with such MAKEFLAGS the order in which these two independent
targets are installed is not stable.
parent 38c452cf
......@@ -23,6 +23,7 @@ optionflags = (doctest.ELLIPSIS |
def setUp(test):
os.environ.pop('MAKEFLAGS')
zc.buildout.testing.buildoutSetUp(test)
zc.buildout.testing.install('slapos.recipe.build', test)
zc.buildout.testing.install_develop('slapos.recipe.cmmi', test)
......
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