zef has a --deps-only flag for the install subcommand to install only the dependencies of a modules.
zef install --deps-only .
This installs all the modules referenced in the depends object in META6.json. Is there a similar flag to install all the modules in the test-depends object in META6.json?
The
--test-dependsat the end is not needed but is included for clarity.--/dependsskips items under thedependsMETA6 field, and--/build-dependsskips items under thebuild-dependsMETA6 field.The relevant bits from
zef --help: