Skip to content
Snippets Groups Projects
Commit accf8836 authored by Rafal Bielski's avatar Rafal Bielski :wave:
Browse files

TrigP1Test: Use rootcomp --sortLabels in CalibPeb tests

parent 8b882d96
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