a | b/nf-test.config | ||
---|---|---|---|
1 | config { |
||
2 | // Location of nf-tests |
||
3 | testsDir "." |
||
4 | |||
5 | // nf-test directory used to create temporary files for each test |
||
6 | workDir System.getenv("NFT_WORKDIR") ?: ".nf-test" |
||
7 | |||
8 | // Location of an optional nextflow.config file specific for executing pipeline tests |
||
9 | configFile "tests/nextflow.config" |
||
10 | |||
11 | // use a given profile for input specifications |
||
12 | profile "test" |
||
13 | } |