With a gradle multi-module project, when you run a task from the root project folder, it applies that task to all projects that have that task, skipping subprojects that don’t.
When I do the same with the --tests parameter, I get a failure if a subproject doesn’t have a matching test. My expectation would be that gradle would not run any tests in that subproject in this case - but not error and fail.
Is there a way to use --tests and not get this failure?