Skip to content

Commit fbb75ca

Browse files
author
Vasileios Karakasis
authored
Merge branch 'master' into feat/custom-namespace-injection
2 parents 86b1b7b + f413bae commit fbb75ca

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

cscs-checks/apps/lammps/lammps_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self):
4141
}
4242

4343
self.tags = {'scs', 'external-resources'}
44-
self.maintainers = ['TR', 'VH']
44+
self.maintainers = ['VH']
4545

4646

4747
@rfm.parameterized_test(*([s, v]

cscs-checks/prgenv/hip/build_hip.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ class BuildHip(rfm.RegressionTest):
2929
executable = f'{hip_path}/bin/hipcc'
3030
executable_opts = ['--version']
3131
maintainers = ['JO']
32-
tags = {'production'}
3332

3433
@run_before('compile')
3534
def set_compile_options(self):
@@ -64,7 +63,6 @@ class HelloHip(rfm.RegressionTest):
6463
build_system = 'Make'
6564
executable = f'{sample_dir}/{sample}/{sample}'
6665
maintainers = ['JO']
67-
tags = {'production'}
6866

6967
@run_after('init')
7068
def set_deps(self):

docs/config_reference.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1321,6 +1321,8 @@ General Configuration
13211321

13221322
Trap command errors in the generated job scripts and let them exit immediately.
13231323

1324+
.. versionadded:: 3.2
1325+
13241326

13251327
.. js:attribute:: .general[].keep_stage_files
13261328

docs/manpage.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1113,7 +1113,7 @@ Here is an alphabetical list of the environment variables recognized by ReFrame:
11131113

11141114
.. envvar:: RFM_TRAP_JOB_ERRORS
11151115

1116-
Ignore job exit code
1116+
Trap job errors in submitted scripts and fail tests automatically.
11171117

11181118
.. table::
11191119
:align: left
@@ -1122,6 +1122,8 @@ Here is an alphabetical list of the environment variables recognized by ReFrame:
11221122
Associated configuration parameter :js:attr:`trap_job_errors` general configuration parameter
11231123
================================== ==================
11241124

1125+
.. versionadded:: 3.9.0
1126+
11251127

11261128
.. envvar:: RFM_UNLOAD_MODULES
11271129

reframe/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import os
77
import sys
88

9-
VERSION = '3.9.0-dev.3'
9+
VERSION = '3.10.0-dev.0'
1010
INSTALL_PREFIX = os.path.normpath(
1111
os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
1212
)

reframe/frontend/cli.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,13 @@ def main():
530530
configvar='logging/handlers_perflog/syslog_address',
531531
help='Syslog server address'
532532
)
533+
argparser.add_argument(
534+
dest='trap_job_errors',
535+
envvar='RFM_TRAP_JOB_ERRORS',
536+
configvar='general/trap_job_errors',
537+
action='store_true',
538+
help='Trap job errors in job scripts and fail tests automatically'
539+
)
533540
argparser.add_argument(
534541
dest='use_login_shell',
535542
envvar='RFM_USE_LOGIN_SHELL',

0 commit comments

Comments
 (0)