Make pip install be very verbose

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-12-31 16:38:26 -05:00
parent 6a395af127
commit 5341709dca

View File

@@ -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