From 344b07e1b6036d3f4a8ac2367db4c80e2e5d221e Mon Sep 17 00:00:00 2001 From: Christopher Bignamini Date: Mon, 1 Mar 2021 17:25:33 +0100 Subject: [PATCH 1/2] Health tag added --- cscs-checks/libraries/io/h5py_parallel_run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cscs-checks/libraries/io/h5py_parallel_run.py b/cscs-checks/libraries/io/h5py_parallel_run.py index d032b0a38a..8f2fd8519b 100644 --- a/cscs-checks/libraries/io/h5py_parallel_run.py +++ b/cscs-checks/libraries/io/h5py_parallel_run.py @@ -23,4 +23,5 @@ def __init__(self): self.executable = 'python' self.executable_opts = ['h5py_mpi_test.py'] self.postrun_cmds = ['h5dump parallel_test.hdf5'] + self.tags = {'health'} self.maintainers = ['TM'] From 6243e640c180352b4dc043a4d6d6828951e87d3a Mon Sep 17 00:00:00 2001 From: Christopher Bignamini Date: Tue, 2 Mar 2021 12:15:08 +0100 Subject: [PATCH 2/2] health tag added to include tests in the sanity check suite --- cscs-checks/libraries/io/hdf5_compile_run.py | 2 +- cscs-checks/libraries/io/netcdf_compile_run.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cscs-checks/libraries/io/hdf5_compile_run.py b/cscs-checks/libraries/io/hdf5_compile_run.py index 366b8c09e5..5406d9cb86 100644 --- a/cscs-checks/libraries/io/hdf5_compile_run.py +++ b/cscs-checks/libraries/io/hdf5_compile_run.py @@ -81,4 +81,4 @@ def __init__(self, lang, linkage): self.postrun_cmds = ['h5dump h5ex_d_chunk.h5 > h5dump_out.txt'] self.maintainers = ['SO', 'RS'] - self.tags = {'production', 'craype'} + self.tags = {'production', 'craype', 'health'} diff --git a/cscs-checks/libraries/io/netcdf_compile_run.py b/cscs-checks/libraries/io/netcdf_compile_run.py index 3f18b78bc5..380653ac22 100644 --- a/cscs-checks/libraries/io/netcdf_compile_run.py +++ b/cscs-checks/libraries/io/netcdf_compile_run.py @@ -48,7 +48,7 @@ def __init__(self, lang, linkage): self.num_tasks_per_node = 1 self.sanity_patterns = sn.assert_found(r'SUCCESS', self.stdout) self.maintainers = ['AJ', 'SO'] - self.tags = {'production', 'craype', 'external-resources'} + self.tags = {'production', 'craype', 'external-resources', 'health'} @rfm.run_before('compile') def setflags(self):