Skip to content

Commit 3565343

Browse files
committed
update nextflow version + pipeline tests
1 parent aed059b commit 3565343

3 files changed

Lines changed: 16 additions & 18 deletions

File tree

.github/workflows/nf-test-gpu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ env:
2626
NXF_SINGULARITY_CACHEDIR: ${{ github.workspace }}/.singularity
2727
NXF_SINGULARITY_LIBRARYDIR: ${{ github.workspace }}/.singularity
2828
# renovate: datasource=github-releases depName=nextflow-io/nextflow versioning=semver
29-
NXF_VER: "25.10.3"
29+
NXF_VER: "25.10.4"
3030

3131
jobs:
3232
get-shards:
@@ -79,7 +79,7 @@ jobs:
7979
profile: [docker, singularity]
8080
shard: ${{ fromJson(needs.get-shards.outputs.shard) }}
8181
NXF_VER:
82-
- "25.10.3"
82+
- "25.10.4"
8383
filters: [pipeline]
8484

8585
steps:

tests/default.nf.test

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ nextflow_pipeline {
2828
// pipeline versions.yml file for multiqc from which Nextflow version is removed because we test pipelines on multiple Nextflow versions
2929
removeNextflowVersion("$outputDir/pipeline_info/nf_core_lsmquant_software_mqc_versions.yml"),
3030
// All stable path name, with a relative path
31-
stable_name,
31+
stable_path,
3232
// All files with stable contents
33-
stable_path
33+
stable_content
3434
).match() }
3535
)
3636
}
@@ -46,10 +46,10 @@ nextflow_pipeline {
4646
}
4747

4848
then {
49-
// stable_name: All files + folders in ${params.outdir}/ with a stable name
50-
def stable_name = getAllFilesFromDir(params.outdir, relative: true, includeDir: true, ignore: ['pipeline_info/*.{html,json,txt}'])
51-
// stable_path: All files in ${params.outdir}/ with stable content
52-
def stable_path = getAllFilesFromDir(params.outdir, ignoreFile: 'tests/.nftignore')
49+
// stable_path: All files + folders in ${params.outdir}/ with a stable path
50+
def stable_path = getAllFilesFromDir(params.outdir, relative: true, includeDir: true, ignore: ['pipeline_info/*.{html,json,txt}'])
51+
// stable_content: All files in ${params.outdir}/ with stable content
52+
def stable_content = getAllFilesFromDir(params.outdir, ignoreFile: 'tests/.nftignore')
5353
assertAll(
5454
{ assert workflow.success},
5555
{ assert snapshot(

tests/default.nf.test.snap

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
"NUMORPH_INTENSITY": {
1919
"numorph_intensity": "1.0.0"
2020
},
21-
"UNZIP": {
22-
"7za": 16.02
23-
},
2421
"VALIDATE_PARAMETERS": {
2522
"numorph_param_validation": "1.0.0"
2623
},
@@ -35,7 +32,9 @@
3532
"mat2json/preprocessing/TEST1/TEST1.json",
3633
"multiqc",
3734
"multiqc/multiqc_data",
35+
"multiqc/multiqc_data/.stub",
3836
"multiqc/multiqc_plots",
37+
"multiqc/multiqc_plots/.stub",
3938
"multiqc/multiqc_report.html",
4039
"numorph3dunet",
4140
"numorph3dunet/TEST1",
@@ -75,14 +74,16 @@
7574
],
7675
[
7776
"TEST1.json:md5,d41d8cd98f00b204e9800998ecf8427e",
77+
".stub:md5,d41d8cd98f00b204e9800998ecf8427e",
78+
".stub:md5,d41d8cd98f00b204e9800998ecf8427e",
7879
"TEST1_full.tif:md5,d41d8cd98f00b204e9800998ecf8427e",
7980
"params_TEST1_lsmquant.csv:md5,a1edc3a22e8f390e473102d0193a8f1c"
8081
]
8182
],
82-
"timestamp": "2026-04-29T15:18:49.500188714",
83+
"timestamp": "2026-06-03T17:44:14.056450705",
8384
"meta": {
8485
"nf-test": "0.9.4",
85-
"nextflow": "25.10.3"
86+
"nextflow": "25.10.4"
8687
}
8788
},
8889
"default test gpu": {
@@ -104,9 +105,6 @@
104105
"NUMORPH_INTENSITY": {
105106
"numorph_intensity": "1.0.0"
106107
},
107-
"UNZIP": {
108-
"7za": 16.02
109-
},
110108
"VALIDATE_PARAMETERS": {
111109
"numorph_param_validation": "1.0.0"
112110
},
@@ -579,10 +577,10 @@
579577
"params_TEST1_lsmquant.csv:md5,a1edc3a22e8f390e473102d0193a8f1c"
580578
]
581579
],
582-
"timestamp": "2026-04-29T15:16:32.417361365",
580+
"timestamp": "2026-06-03T17:16:05.583772288",
583581
"meta": {
584582
"nf-test": "0.9.4",
585-
"nextflow": "25.10.3"
583+
"nextflow": "25.10.4"
586584
}
587585
}
588586
}

0 commit comments

Comments
 (0)