Skip to content

Commit 1ec760b

Browse files
author
whitequark
committedJan 19, 2018
Fix missing WithProperties in addCondaInstallSteps.
1 parent 4fa29a7 commit 1ec760b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎master.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -242,12 +242,13 @@ def addCondaSetupTestEnvironmentSteps(factory, packages=['python'],
242242

243243
def addCondaInstallSteps(factory, packages=[],
244244
update_deps=False, use_local=True):
245+
packages = map(WithProperties, packages)
245246
factory.addStep(
246247
ShellCommand(
247248
name = 'conda_install',
248249
command = ['conda', 'install',
249250
'-n', WithProperties(conda_env_name)] +
250-
map(WithProperties, packages) +
251+
packages +
251252
([] if update_deps else ['--no-update-deps']) +
252253
(['--use-local'] if use_local else []),
253254
description = ['installing'] + packages,

0 commit comments

Comments
 (0)