-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnf-test.config
More file actions
31 lines (24 loc) · 941 Bytes
/
nf-test.config
File metadata and controls
31 lines (24 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
config {
// location for all nf-test tests
testsDir "."
// nf-test directory including temporary files for each test
workDir System.getenv("NFT_WORKDIR") ?: ".nf-test"
// location of an optional nextflow.config file specific for executing tests
testsDir "tests"
workDir ".nf-test"
configFile "tests/nextflow.config"
// ignore tests coming from the nf-core/modules repo
ignore 'modules/nf-core/**/tests/*', 'subworkflows/nf-core/**/tests/*'
// run all test with defined profile(s) from the main nextflow.config
//profile "apptainer"
// list of filenames or patterns that should be trigger a full test run
triggers 'nextflow.config', 'nf-test.config', 'conf/test.config', 'tests/nextflow.config', 'tests/.nftignore'
// load the necessary plugins
requires (
"nf-test": "0.9.3"
)
plugins {
load "nft-utils@0.0.3"
load "nft-csv@0.1.0"
}
}