-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update modules/subworkflows and fix tests
- Loading branch information
Showing
12 changed files
with
208 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
modules/nf-core/custom/sratoolsncbisettings/tests/main.nf.test
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
config { | ||
// Location of nf-tests | ||
// Location for all nf-tests | ||
testsDir "." | ||
|
||
// nf-test directory used to create temporary files for each test | ||
workDir System.getenv("NFT_WORKDIR") ?: ".nf-test" | ||
// nf-test directory including temporary files for each test | ||
workDir ".nf-test" | ||
|
||
// Location of an optional nextflow.config file specific for executing pipeline tests | ||
configFile "tests/nextflow.config" | ||
// Location of an optional nextflow.config file specific for executing tests | ||
configFile "conf/test.config" | ||
|
||
// Run all test with defined profile(s) from the main nextflow.config | ||
profile "test" | ||
|
||
// Include plugins | ||
plugins { | ||
load "[email protected]" | ||
load "[email protected]" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
subworkflows/nf-core/utils_nextflow_pipeline/tests/main.function.nf.test
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
subworkflows/nf-core/utils_nextflow_pipeline/tests/main.workflow.nf.test
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pipeline_info/*.{html,json,txt,yml} | ||
samplesheet/samplesheet.csv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.