askimed / nf-test

Simple test framework for Nextflow pipelines
https://www.nf-test.com
MIT License
146 stars 25 forks source link

Can't activate multiple jar plugins via --plugins #239

Open MarieLataretu opened 4 months ago

MarieLataretu commented 4 months ago

Hi there,

I try to activate multiple local jar plugins (nf-test 0.8.4):

nf-test test my-test.nf.test --plugins path/to/my/nft-plugin.jar,path/to/my/nft-plugin2.jar

However, the list is not split:

Plugin 'path/to/my/nft-plugin.jar,path/to/my/nft-plugin2.jar' not found.

(I was assuming the same as --plugins nft-fasta@1.0.0,plugin2@1.0.0)

lukfor commented 1 month ago

Hi, sorry for the late reply. You can activate multiple plugins by separating them with a :

Example:

nf-test test my-test.nf.test --plugins path/to/my/nft-plugin.jar:path/to/my/nft-plugin2.jar
MarieLataretu commented 1 month ago

Nice, thanks!

Is it a typo in the documentation here? (I can't test the @ notation atm)