Typo in master.cfg

This commit is contained in:
Jorrit Wronski
2015-07-06 15:16:23 +02:00
parent 45488eed01
commit 91951f3f82

View File

@@ -380,7 +380,7 @@ def pythonFactory(pyID, pyCFG=PythonSlaveConfig("name"), gitMode='incremental'):
fixPermissions(factory)
#
pkgs = ["requests", "jinja2", "pyyaml", "numpy", "scipy", "matplotlib", "pandas", "cython"]
if checkID(pyID, teID=100, strict=False): pkgs.extend(["unxutils","pywin32") # Add Windows-only dependency
if checkID(pyID, teID=100, strict=False): pkgs.extend(["unxutils","pywin32"]) # Add Windows-only dependency
installCMD = " ".join(["conda", "install", "-yq"] + " " + " ".join(pkgs))
combinedCMD = " && ".join([activateCMD, installCMD])
factory.addStep(ShellCommand(command = combinedCMD, workdir = workingFolder, haltOnFailure = False))