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
Improve selective testing precision in Mill's example tests (#5423)
Previously, any change to any example folder would invalidate all of
them via
```json
{
"dist.examplePathsWithArtifactName0": {
"dist.examplePathsWithArtifactName": {
"libs.init.exampleList": {
"libs.init.resources": {
"libs.init.localRunClasspath": {
"libs.init.localClasspath": {
"libs.main.test.transitiveLocalClasspath": {
"libs.main.test.runClasspath": {
"example.javalib.module[9-docjar].runClasspath": {
"example.javalib.module[9-docjar].local.daemon.runClasspath": {
"example.javalib.module[9-docjar].local.daemon.testForked": {}
}
},
```
This PR splits up `examplePathsWithArtifactNames` into `examplePaths`,
`examplePathRefs`, and `exampleArtifactNames`. This allows
`libs.init.exampleList` to avoid depending on the contents of the
example folders, which should avoid invalidation of all example tests
through this dependency path
0 commit comments