Skip to content

Commit f48157c

Browse files
author
Elad Herz
committed
fix: update ignore patterns for seqkit in remove_ribo_rna tests
1 parent 4c0c5ba commit f48157c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/remove_ribo_rna.nf.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ nextflow_pipeline {
113113

114114
then {
115115
// stable_name: All files + folders in ${params.outdir}/ with a stable name
116-
def stable_name = getAllFilesFromDir(params.outdir, relative: true, includeDir: true, ignore: ['pipeline_info/*.{html,json,txt}', 'seqkit/**'])
116+
def stable_name = getAllFilesFromDir(params.outdir, relative: true, includeDir: true, ignore: ['pipeline_info/*.{html,json,txt}', 'seqkit', 'seqkit/**'])
117117
// stable_path: All files in ${params.outdir}/ with stable content
118118
def stable_path = getAllFilesFromDir(params.outdir, ignoreFile: 'tests/.nftignore')
119119
assertAll(
@@ -161,7 +161,7 @@ nextflow_pipeline {
161161

162162
then {
163163
// stable_name: All files + folders in ${params.outdir}/ with a stable name
164-
def stable_name = getAllFilesFromDir(params.outdir, relative: true, includeDir: true, ignore: ['pipeline_info/*.{html,json,txt}', 'seqkit/**'])
164+
def stable_name = getAllFilesFromDir(params.outdir, relative: true, includeDir: true, ignore: ['pipeline_info/*.{html,json,txt}', 'seqkit', 'seqkit/**'])
165165
// stable_path: All files in ${params.outdir}/ with stable content
166166
def stable_path = getAllFilesFromDir(params.outdir, ignoreFile: 'tests/.nftignore')
167167
assertAll(

0 commit comments

Comments
 (0)