HeartSaVioR commented on a change in pull request #25923:
[DO-NOT-MERGE][WIP][MINOR][SQL][TESTS] show tests in SQLQuerySuite correctly in
Jenkins
URL: https://github.com/apache/spark/pull/25923#discussion_r327921439
##########
File path: sql/core/src/test/scala/org/apache/spark/sql/SQLQueryTestSuite.scala
##########
@@ -448,7 +448,12 @@ class SQLQueryTestSuite extends QueryTest with
SharedSparkSession {
listFilesRecursively(new File(inputFilePath)).flatMap { file =>
val resultFile = file.getAbsolutePath.replace(inputFilePath,
goldenFilePath) + ".out"
val absPath = file.getAbsolutePath
+
+ // Replacing '.' to '_' is an workaround of sbt bug which removes test
name prior to the
+ // last dot in JUnitXmlReportPlugin.
+ // Please refer https://github.com/sbt/sbt/issues/2949
val testCaseName =
absPath.stripPrefix(inputFilePath).stripPrefix(File.separator)
+ .replace('.', '_')
Review comment:
For adding context, this is to help tracking the issue related to #25913.
`subquery/scalar-subquery/scalar-subquery-select.sql` is failing, but as we
know it's just represented as `sql` and bunch of tests are having same name
which bothers with weird UI impact in Jenkins page (clicking `sql` in Jenkins
page is indeterministic now).
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]