Skip to content

Commit 6b28d4f

Browse files
author
Vasileios Karakasis
authored
Merge pull request #1637 from vkarak/bugfix/node-alloc-message
[bugfix] Fix detailed listing message for node allocation scheme
2 parents cf98101 + a4f09f8 commit 6b28d4f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

reframe/frontend/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ def fmt_deps():
5656
return f'- {check.name} (found in {location!r})'
5757

5858
if check.num_tasks > 0:
59-
node_alloc_scheme = f'standard ({check.num_tasks} task(s))'
59+
node_alloc_scheme = (f'standard ({check.num_tasks} task(s) -- '
60+
f'may be set differently in hooks)')
6061
elif check.num_tasks == 0:
6162
node_alloc_scheme = 'flexible'
6263
else:

0 commit comments

Comments
 (0)