We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4983550 commit 8d79ec5Copy full SHA for 8d79ec5
1 file changed
tests/nextflow.config
@@ -4,15 +4,17 @@
4
========================================================================================
5
*/
6
7
-// Limit resources so that this can run on GitHub Actions
+// Impose sensible resource limits for testing
8
process {
9
- resourceLimits = [
10
- cpus: 2,
11
- memory: '8.GB',
12
- time: '6.h'
13
- ]
+ withName: '.*' {
+ cpus = 2
+ memory = 6.GB
+ time = 2.h
+ }
14
+ withName: 'BWA_INDEX' {
15
+ memory = 16.GB
16
17
}
-
18
params {
19
modules_testdata_base_path = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/'
20
pipelines_testdata_base_path = 'https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/chipseq'
0 commit comments