Skip to content

Commit 7c9e5fa

Browse files
committed
Remove _D_ from class name
1 parent 7ef2a45 commit 7c9e5fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/manpage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ Options controlling ReFrame execution
385385

386386
ReFrame will parameterize and run the tests on the selected nodes.
387387
In order to do that, it will dynamically create new tests that will inherit all the attributes of the original tests and contain one more parameter, ``$nid``, with the node that it will run on.
388-
The new ReFrame classes are named ``_D_{basetest}_{partition}``.
388+
The new ReFrame classes are named ``{basetest}_{partition}``.
389389

390390
Currently this will work correctly only for one-node tests in local or Slurm partitions, and it will take into account the cli jobs options that are passed by the user.
391391
This feature will not work with dependencies, since the names of the tests will be changed, but it will work with fixtures.

reframe/frontend/distribute_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def distribute_tests(testcases, node_map):
9393
check.variant_num, recurse=True
9494
)
9595
nc = make_test(
96-
f'_D_{cls.__name__}_{partition.fullname.replace(":", "_")}',
96+
f'{cls.__name__}_{partition.fullname.replace(":", "_")}',
9797
(cls,),
9898
{
9999
'valid_systems': [partition.fullname],

0 commit comments

Comments
 (0)