Skip to content

Commit

Permalink
sweep: DIRACGrid#7531 fix: removed option for python3 pilots
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Mar 22, 2024
1 parent 0a2a2d7 commit 73ba720
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __configurePilot(basepath, vo):
os.system(
"python "
+ basepath
+ "dirac-pilot.py -S %s -l %s -C %s -N ce.debug.ch -Q default -n DIRAC.JobDebugger.ch --pythonVersion=3 -dd"
+ "dirac-pilot.py -S %s -l %s -C %s -N ce.debug.ch -Q default -n DIRAC.JobDebugger.ch -dd"
% (currentSetup, vo, masterCS)
)

Expand Down
2 changes: 0 additions & 2 deletions src/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,8 +641,6 @@ def _getPilotOptions(self, queue: str) -> list[str]:
elif CVMFS_locations:
pilotOptions.append(f"--CVMFS_locations={CVMFS_locations}")

pilotOptions.append("--pythonVersion=3")

# DIRAC Extensions to be used in pilots
pilotExtensionsList = opsHelper.getValue("Pilot/Extensions", [])
extensionsList = []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ def test_getPilotWrapper(mocker, sd, pilotWrapperDirectory):
pilotOptions = sd._getPilotOptions("ce1.site1.com_condor")
assert {
"--preinstalledEnv=123",
"--pythonVersion=3",
"--wnVO=dteam",
"-n LCG.Site1.com",
"-N ce1.site1.com",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
from PilotWrapper import pilotWrapperScript # pylint: disable=import-error

res = pilotWrapperScript(
pilotOptions="--setup=CI -N ce.dirac.org -Q DIRACQUEUE -n DIRAC.CI.ORG --pythonVersion=3 --debug",
pilotOptions="--setup=CI -N ce.dirac.org -Q DIRACQUEUE -n DIRAC.CI.ORG --debug",
location="diracproject.web.cern.ch/diracproject/tars/Pilot/DIRAC/" + pilotBranch + "/,wrong.cern.ch",
)

Expand Down

0 comments on commit 73ba720

Please sign in to comment.