Skip to content
Snippets Groups Projects
Commit 2b05bda2 authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'master-proctools-runtier0tests-update' into 'master'

Make list_patch_packages non fatal for RunTier0Tests.py

See merge request atlas/athena!23295
parents 21480cd3 ad81c69d
No related branches found
No related tags found
No related merge requests found
......@@ -711,7 +711,10 @@ def main():
logging.info("WARNING: You have specified a dedicated release as reference %s and as validation %s release, Your local setup area will not be considered!!!" %(cleanSetup, mysetup))
logging.info("this option is mainly designed for comparing release versions!!")
else:
list_patch_packages(ciMode)
try:
list_patch_packages(ciMode)
except:
logging.warning("Cannot list patch packages...\n")
########### Get unique name for the clean run directory
UniqName = str(uuid.uuid4())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment