Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions nf-test.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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'

// load the necessary plugins
plugins {
load "nft-utils@0.0.3"
}
}
Loading