nf-test
nf-test copied to clipboard
Simple test framework for Nextflow pipelines
Probably wasn't ready to get spammed by CI, but it threw a 403 on one of the actions. I can't find it now, but I'll drop an example if I...
If the pipeline is in a git repo, then it might make sense to add the default test directory to `.gitignore`
Hi, When trying to execute following test (filename is `gemini.test`): ``` nextflow_pipeline { name "Gemini tests" script "main.nf" test("Success") { when { params { gemini = true } } then...
Hi there, Thanks for nf-test, having a lot of fun with it in @nf-core and it's working well. Apologies if this is a naive question, still getting to grips with...
Hi, Would you be able to add a "recommended" github CI workflow example to run nf-test on github actions? Alternatively, would you be able to add a dedicated action? Thanks...
Would be helpful if nf-test was able to compare tables of data (ie output csv/tsv) to desired level of precision.
Hi, Image comparison comes in handy in some data processing/generation workflows, as nextflow can easily generate an output file, but could be corrupted without the user knowing about it. Potentially,...
When running an nf-test on github CI, I see that the test runs, but then it crashes raising the error "no valid tests found". When running the same command on...
I was trying to use `nf-test` in one of my machines where Nextflow is installed locally for each user at `~/.local/bin`. The current code wasn't picking up the Nextflow installation....
I was looking at the documentation and general internet resources to find a way to run all my nf-tests in parallel. But, I didn't find any useful resource. Does this...