From 5341709dcacc6809e3dddb6f00a773e761c8ec1a Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Wed, 31 Dec 2014 16:38:26 -0500 Subject: [PATCH] Make pip install be very verbose Signed-off-by: Ian Bell --- dev/buildbot/master/master.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/buildbot/master/master.cfg b/dev/buildbot/master/master.cfg index 3f27ce75..14ae6758 100644 --- a/dev/buildbot/master/master.cfg +++ b/dev/buildbot/master/master.cfg @@ -258,7 +258,7 @@ def websiteFactory(platform, gitMode='incremental', fullBuild=False): factory.addStep(ShellCommand(command=' '.join([docActivateCmd(), "pip", "uninstall", "-y", "coolprop"]), workdir= 'build/wrappers/Python', haltOnFailure = False)) factory.addStep(ShellCommand(command=' '.join([docActivateCmd(), "pip", "uninstall", "-y", "coolprop"]), workdir= 'build/wrappers/Python', haltOnFailure = False)) # Install the wheel - this will uninstall the old version - factory.addStep(ShellCommand(command=' '.join([docActivateCmd(), "pip", "install", "--force-reinstall", "--ignore-installed", "--upgrade", "--no-index", "--use-wheel", "`ls dist/CoolProp*.whl`"]), workdir= 'build/wrappers/Python', haltOnFailure = True)) + factory.addStep(ShellCommand(command=' '.join([docActivateCmd(), "pip", "-vvv", "install", "--force-reinstall", "--ignore-installed", "--upgrade", "--no-index", "--use-wheel", "`ls dist/CoolProp*.whl`"]), workdir= 'build/wrappers/Python', haltOnFailure = True)) # Remove the generated wheel factory.addStep(ShellCommand(command=' '.join([docActivateCmd(), "rm", 'dist/*.whl']), workdir= 'build/wrappers/Python', haltOnFailure = True)) # Test the compiled CoolProp