Skip to content
Snippets Groups Projects

Trigger ART tests with new Run-3 menu flavours

Merged Rafal Bielski requested to merge rbielski/athena:new-menu-art-tests into master
26 files
+ 623
11
Compare changes
  • Side-by-side
  • Inline
Files
26
#!/usr/bin/env python
# art-description: Trigger athenaHLT test of the Cosmic_pp_run3_v1 menu on physics_IDCosmic stream from a cosmic run
# art-type: build
# art-include: master/Athena
from TrigValTools.TrigValSteering import Test, ExecStep, CheckSteps
ex = ExecStep.ExecStep()
ex.type = 'athenaHLT'
ex.job_options = 'TrigUpgradeTest/full_menu.py'
ex.input = 'data_cos_IDCosmic'
ex.max_events = 100
ex.args = '-c "setMenu=\'Cosmic_pp_run3_v1\';"'
ex.perfmon = False # perfmon with athenaHLT doesn't work at the moment
test = Test.Test()
test.art_type = 'build'
test.exec_steps = [ex]
test.check_steps = CheckSteps.default_check_steps(test)
import sys
sys.exit(test.run())
Loading