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
fix(ci): convert space-separated wildcard suites to comma-separated
scalatest-maven-plugin splits wildcardSuites on commas and passes
each entry as a separate -w arg to the ScalaTest runner. The YAML >-
folded scalar collapses line breaks to spaces, so the whole package
list was passed as one garbage package name -> 0 tests found.
Fix: FILTER=$(echo ... | tr ' ' ',') before the mvn call.
0 commit comments