You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a repo with a module that uses node. It uses the base and node gradle plugins and registers a list of tasks, test being among them.
When running ./gradlew runAffectedUnitTests -Paffected_module_detector.enable the affected module is found but it's never listed in the list of modules to decide whether to execute against.
For example, the bottom of the output is like so
[INFO] [amd] dependents of :node-module is [:node-module]
[INFO] [amd] checking whether I should include :a-module and my answer is false
[INFO] [amd] checking whether I should include :another-module and my answer is false
node-module is not listed and the tests are never run. It seems like the detector only operates against java/kotlin modules. Is this by design?
The text was updated successfully, but these errors were encountered:
I have a repo with a module that uses node. It uses the base and node gradle plugins and registers a list of tasks,
test
being among them.When running
./gradlew runAffectedUnitTests -Paffected_module_detector.enable
the affected module is found but it's never listed in the list of modules to decide whether to execute against.For example, the bottom of the output is like so
node-module
is not listed and the tests are never run. It seems like the detector only operates against java/kotlin modules. Is this by design?The text was updated successfully, but these errors were encountered: