From cfeaf291322202d1f3de03c4a0c2885349a6ed60 Mon Sep 17 00:00:00 2001 From: Matthias Kraushaar Date: Tue, 24 Mar 2020 09:35:21 +0100 Subject: [PATCH 1/2] Remove tags production + craype --- cscs-checks/mch/collectives_halo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cscs-checks/mch/collectives_halo.py b/cscs-checks/mch/collectives_halo.py index f4e803cec3..009a468933 100644 --- a/cscs-checks/mch/collectives_halo.py +++ b/cscs-checks/mch/collectives_halo.py @@ -108,7 +108,7 @@ def __init__(self, variant, bench_reference): } self.maintainers = ['AJ', 'MKr'] - self.tags = {'production', 'mch', 'craype'} + self.tags = {'mch'} @rfm.run_before('run') def set_launcher_options(self): From dcd16ab8b6a7fb3f8a73fb1e6c81b4f731b1f0a0 Mon Sep 17 00:00:00 2001 From: Matthias Kraushaar Date: Tue, 24 Mar 2020 10:29:56 +0100 Subject: [PATCH 2/2] Add system specific tags --- cscs-checks/mch/collectives_halo.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cscs-checks/mch/collectives_halo.py b/cscs-checks/mch/collectives_halo.py index 009a468933..2250f69e20 100644 --- a/cscs-checks/mch/collectives_halo.py +++ b/cscs-checks/mch/collectives_halo.py @@ -108,7 +108,10 @@ def __init__(self, variant, bench_reference): } self.maintainers = ['AJ', 'MKr'] - self.tags = {'mch'} + if self.current_system.name == 'tsa': + self.tags = {'mch'} + else: + self.tags = {'production', 'mch', 'craype'} @rfm.run_before('run') def set_launcher_options(self):