The Gaudi Framework
v36r7 (7f57a304)
__init__.py
Go to the documentation of this file.
1
11
def
run_gaudi
(*args, **kwargs):
12
"""
13
Helper to simplify the invocation of gaudirun.py in tests.
14
"""
15
from
subprocess
import
run
16
17
cmd = [
"gaudirun.py"
]
18
cmd.extend(str(x)
for
x
in
args)
19
20
print(
"running"
, cmd)
21
return
run(cmd, **kwargs)
GaudiTests.run_gaudi
def run_gaudi(*args, **kwargs)
(c) Copyright 2022 CERN for the benefit of the LHCb and ATLAS collaborations # # This software is dis...
Definition:
__init__.py:11
GaudiExamples
python
GaudiTests
__init__.py
Generated on Fri Jul 29 2022 20:50:37 for The Gaudi Framework by
1.8.18