Skip to content

Commit

Permalink
Change the default valid_systems to ['*'] when it is set as class att…
Browse files Browse the repository at this point in the history
…ribute
  • Loading branch information
Caspar van Leeuwen committed Feb 5, 2024
1 parent 39c8430 commit 3a45915
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eessi/testsuite/tests/apps/gromacs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'))

Expand Down
2 changes: 1 addition & 1 deletion eessi/testsuite/tests/apps/osu.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion eessi/testsuite/tests/apps/tensorflow/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
Expand Down

0 comments on commit 3a45915

Please sign in to comment.