Skip to content

Commit 91a6c94

Browse files
author
whitequark
committedJan 19, 2018
Don't bloat the waterfall so much.
1 parent 1ec760b commit 91a6c94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

Diff for: ‎master.cfg

+4-4
Original file line numberDiff line numberDiff line change
@@ -242,17 +242,17 @@ def addCondaSetupTestEnvironmentSteps(factory, packages=['python'],
242242

243243
def addCondaInstallSteps(factory, packages=[],
244244
update_deps=False, use_local=True):
245-
packages = map(WithProperties, packages)
245+
packages_display = [re.sub("=.*", "", package) for package in packages]
246246
factory.addStep(
247247
ShellCommand(
248248
name = 'conda_install',
249249
command = ['conda', 'install',
250250
'-n', WithProperties(conda_env_name)] +
251-
packages +
251+
map(WithProperties, packages) +
252252
([] if update_deps else ['--no-update-deps']) +
253253
(['--use-local'] if use_local else []),
254-
description = ['installing'] + packages,
255-
descriptionDone = ['install'] + packages,
254+
description = ['installing'] + packages_display,
255+
descriptionDone = ['install'] + packages_display,
256256
haltOnFailure = True,
257257
env = condaEnv(use_local=True),
258258
locks = default_locks +

0 commit comments

Comments
 (0)