Skip to content

Commit edf2edb

Browse files
author
Vasileios Karakasis
authored
Merge branch 'master' into feat/dont-restage
2 parents 7992364 + 500e4d3 commit edf2edb

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

config/cscs-ci.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
],
2727
'access': [
2828
'--constraint=gpu',
29-
'--partition=cscsci'
29+
'--partition=cscsci',
30+
'--account=jenscscs'
3031
],
3132
'environs': [
3233
'builtin'
@@ -61,7 +62,8 @@
6162
'daint-gpu'
6263
],
6364
'access': [
64-
'--constraint=gpu'
65+
'--constraint=gpu',
66+
'--account=jenscscs'
6567
],
6668
'environs': [
6769
'builtin'
@@ -85,7 +87,8 @@
8587
'daint-gpu'
8688
],
8789
'access': [
88-
'proc=gpu'
90+
'proc=gpu',
91+
'-A jenscscs'
8992
],
9093
'environs': [
9194
'builtin'
@@ -101,7 +104,8 @@
101104
'daint-gpu'
102105
],
103106
'access': [
104-
'-l proc=gpu'
107+
'-l proc=gpu',
108+
'-A jenscscs'
105109
],
106110
'environs': [
107111
'builtin'

reframe/core/decorators.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,13 @@ def require_deps(func):
227227
The converted arguments are essentially functions accepting a single
228228
argument, which is the target test's programming environment.
229229
230+
Additionally, this decorator will attach the function to run *after* the
231+
test's setup phase, but *before* any other "post_setup" pipeline hook.
232+
230233
This decorator is also directly available under the :mod:`reframe` module.
231234
232235
.. versionadded:: 2.21
236+
233237
'''
234238
tests = inspect.getfullargspec(func).args[1:]
235239
func._rfm_resolve_deps = True

0 commit comments

Comments
 (0)