Skip to content

Commit

Permalink
Merge pull request #108 from boegel/test_naming
Browse files Browse the repository at this point in the history
unify test names: `EESSI_` + software name (with '`-`' replaced by '`_`') + optional label for type of test
  • Loading branch information
smoors authored Feb 1, 2024
2 parents daa3aff + 38c9d54 commit 937e34e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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 @@ -39,7 +39,7 @@


@rfm.simple_test
class GROMACS_EESSI(gromacs_check):
class EESSI_GROMACS(gromacs_check):
scale = parameter(SCALES.keys())
valid_prog_environs = ['default']
valid_systems = []
Expand Down
4 changes: 2 additions & 2 deletions eessi/testsuite/tests/apps/osu.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def filter_scales_coll():


@rfm.simple_test
class osu_pt_2_pt(osu_benchmark):
class EESSI_OSU_Micro_Benchmarks_pt2pt(osu_benchmark):
''' Run-only OSU test '''
scale = parameter(filter_scales_pt2pt())
valid_prog_environs = ['default']
Expand Down Expand Up @@ -154,7 +154,7 @@ def set_num_gpus_per_node(self):


@rfm.simple_test
class osu_coll(osu_benchmark):
class EESSI_OSU_Micro_Benchmarks_coll(osu_benchmark):
''' Run-only OSU test '''
scale = parameter(filter_scales_coll())
valid_prog_environs = ['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 @@ -11,7 +11,7 @@
from eessi.testsuite.constants import * # noqa

@rfm.simple_test
class TENSORFLOW_EESSI(rfm.RunOnlyRegressionTest):
class EESSI_TensorFlow(rfm.RunOnlyRegressionTest):

# This test can run at any scale, so parameterize over all known SCALES
scale = parameter(SCALES.keys())
Expand Down

0 comments on commit 937e34e

Please sign in to comment.