Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unify test names: EESSI_ + software name (with '-' replaced by '_') + optional label for type of test #108

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading