-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] separate freesurfer-related process testing to a separate actio…
…n run to avoid memory issues
- Loading branch information
1 parent
8ea6bd5
commit 45ee20c
Showing
3 changed files
with
34 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
nextflow_pipeline { | ||
|
||
options "-stub-run" | ||
|
||
name "Test nf-pediatric freesurfer workflows main.nf" | ||
script "../main.nf" | ||
|
||
test("Freesurfer profile - should run successfully") { | ||
|
||
when { | ||
params { | ||
|
||
params.input = "$projectDir/tests/data/samplesheet_testtracking.csv" | ||
params.outdir = "test_results/" | ||
|
||
params.freesurfer = true | ||
params.fs_license = "https://www.dropbox.com/scl/fi/0s8lp6lydyd0rxawxb4jm/license.txt?rlkey=hz54oc0d4sor69avqphtrjvgn&st=9e0yij97&dl=0" | ||
|
||
} | ||
} | ||
|
||
then { | ||
assert workflow.success | ||
assert workflow.trace.tasks().size() == 3 | ||
} | ||
|
||
} | ||
|
||
} |
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