From 3a45915f345385fae346701e58e206f7f2241710 Mon Sep 17 00:00:00 2001 From: Caspar van Leeuwen Date: Mon, 5 Feb 2024 15:59:51 +0100 Subject: [PATCH] Change the default valid_systems to ['*'] when it is set as class attribute --- eessi/testsuite/tests/apps/gromacs.py | 2 +- eessi/testsuite/tests/apps/osu.py | 2 +- eessi/testsuite/tests/apps/tensorflow/tensorflow.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eessi/testsuite/tests/apps/gromacs.py b/eessi/testsuite/tests/apps/gromacs.py index 68d78704..4189ad49 100644 --- a/eessi/testsuite/tests/apps/gromacs.py +++ b/eessi/testsuite/tests/apps/gromacs.py @@ -42,7 +42,7 @@ class GROMACS_EESSI(gromacs_check): scale = parameter(SCALES.keys()) valid_prog_environs = ['default'] - valid_systems = [] + valid_systems = ['*'] time_limit = '30m' module_name = parameter(find_modules('GROMACS')) diff --git a/eessi/testsuite/tests/apps/osu.py b/eessi/testsuite/tests/apps/osu.py index 5d99b882..af08baad 100644 --- a/eessi/testsuite/tests/apps/osu.py +++ b/eessi/testsuite/tests/apps/osu.py @@ -42,7 +42,7 @@ class osu_pt_2_pt(osu_benchmark): ''' Run-only OSU test ''' scale = parameter(filter_scales_pt2pt()) valid_prog_environs = ['default'] - valid_systems = [] + valid_systems = ['*'] time_limit = '30m' module_name = parameter(find_modules('OSU-Micro-Benchmarks')) # Device type for non-cuda OSU-Micro-Benchmarks should run on hosts of both node types. To do this the default diff --git a/eessi/testsuite/tests/apps/tensorflow/tensorflow.py b/eessi/testsuite/tests/apps/tensorflow/tensorflow.py index d2a5e0d9..003b45af 100644 --- a/eessi/testsuite/tests/apps/tensorflow/tensorflow.py +++ b/eessi/testsuite/tests/apps/tensorflow/tensorflow.py @@ -16,7 +16,7 @@ class TENSORFLOW_EESSI(rfm.RunOnlyRegressionTest): # This test can run at any scale, so parameterize over all known SCALES scale = parameter(SCALES.keys()) valid_prog_environs = ['default'] - valid_systems = [] + valid_systems = ['*'] # Parameterize over all modules that start with TensorFlow module_name = parameter(utils.find_modules('TensorFlow'))