We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dfdf69 commit c948777Copy full SHA for c948777
.github/scripts/generate-junit-reports.sc
@@ -27,7 +27,7 @@ def findFiles(paths: Seq[os.Path], result: Seq[os.Path] = Nil): Seq[os.Path] =
27
case Nil => result
28
case head :: tail =>
29
val newFiles =
30
- if head.last == "test.dest" && os.isDir(head) then
+ if head.segments.contains("test") && head.last.endsWith(".dest") && os.isDir(head) then
31
os.list(head).filter(f => f.last == "out.json").toList
32
else Seq.empty
33
val newDirs = os.list(head).filter(p => os.isDir(p)).toList
0 commit comments