Skip to content

Commit

Permalink
Fix missing WithProperties in addCondaInstallSteps.
Browse files Browse the repository at this point in the history
whitequark committed Jan 19, 2018
1 parent 4fa29a7 commit 1ec760b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion master.cfg
Original file line number Diff line number Diff line change
@@ -242,12 +242,13 @@ def addCondaSetupTestEnvironmentSteps(factory, packages=['python'],

def addCondaInstallSteps(factory, packages=[],
update_deps=False, use_local=True):
packages = map(WithProperties, packages)
factory.addStep(
ShellCommand(
name = 'conda_install',
command = ['conda', 'install',
'-n', WithProperties(conda_env_name)] +
map(WithProperties, packages) +
packages +
([] if update_deps else ['--no-update-deps']) +
(['--use-local'] if use_local else []),
description = ['installing'] + packages,

0 comments on commit 1ec760b

Please sign in to comment.