From fe9614c5d1d9820dae56a5e30a07ba336db45835 Mon Sep 17 00:00:00 2001 From: Jonathan Manning Date: Thu, 22 Aug 2024 12:19:35 +0100 Subject: [PATCH] Lock prefix config for multiqc (#6244) --- modules/nf-core/multiqc/tests/main.nf.test | 2 ++ modules/nf-core/multiqc/tests/nextflow.config | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 modules/nf-core/multiqc/tests/nextflow.config diff --git a/modules/nf-core/multiqc/tests/main.nf.test b/modules/nf-core/multiqc/tests/main.nf.test index 6aa27f4c977..33316a7ddb3 100644 --- a/modules/nf-core/multiqc/tests/main.nf.test +++ b/modules/nf-core/multiqc/tests/main.nf.test @@ -8,6 +8,8 @@ nextflow_process { tag "modules_nfcore" tag "multiqc" + config "./nextflow.config" + test("sarscov2 single-end [fastqc]") { when { diff --git a/modules/nf-core/multiqc/tests/nextflow.config b/modules/nf-core/multiqc/tests/nextflow.config new file mode 100644 index 00000000000..c537a6a3e79 --- /dev/null +++ b/modules/nf-core/multiqc/tests/nextflow.config @@ -0,0 +1,5 @@ +process { + withName: 'MULTIQC' { + ext.prefix = null + } +}