askimed / nf-test

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

Add `NFT_JAVA_ARGS` environment variable support for custom JVM options #264

Closed lukfor closed 1 month ago

lukfor commented 1 month ago

This PR adds support for setting custom JVM options through a new environment variable NFT_JAVA_ARGS.

Example Usage:

export NFT_JAVA_ARGS="-Xmx1G"
nf_test

This PR fixes #251