Skip to content
Snippets Groups Projects
Commit df78382e authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'fix-calibpeb-2' into 'master'

TrigP1Test: Use rootcomp --sortLabels in CalibPeb tests

See merge request atlas/athena!35009
parents dd254f26 accf8836
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,9 @@ test.exec_steps = [ex]
test.check_steps = CheckSteps.default_check_steps(test)
# Make RootComp step required
test.get_step('RootComp').required = True
rc = test.get_step('RootComp')
rc.required = True
rc.args += ' --sortLabels'
import sys
sys.exit(test.run())
......@@ -23,7 +23,9 @@ test.exec_steps = [ex]
test.check_steps = CheckSteps.default_check_steps(test)
# Make RootComp step required
test.get_step('RootComp').required = True
rc = test.get_step('RootComp')
rc.required = True
rc.args += ' --sortLabels'
import sys
sys.exit(test.run())
......@@ -35,7 +35,9 @@ test.exec_steps = [ex]
test.check_steps = CheckSteps.default_check_steps(test)
# Make RootComp step required
test.get_step('RootComp').required = True
rc = test.get_step('RootComp')
rc.required = True
rc.args += ' --sortLabels'
import sys
sys.exit(test.run())
......@@ -22,7 +22,9 @@ test.exec_steps = [ex]
test.check_steps = CheckSteps.default_check_steps(test)
# Make RootComp step required
test.get_step('RootComp').required = True
rc = test.get_step('RootComp')
rc.required = True
rc.args += ' --sortLabels'
import sys
sys.exit(test.run())
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