-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathnf-test.config
More file actions
25 lines (19 loc) · 878 Bytes
/
nf-test.config
File metadata and controls
25 lines (19 loc) · 878 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
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
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 "test"
// 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', 'modules/local/**/templates/**'
// load the necessary plugins
plugins {
load "nft-utils@0.0.3"
load "nft-anndata@0.1.0"
}
}