We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bb0e92 commit 8048c3aCopy full SHA for 8048c3a
tests/idempotency/IdempotencyCheck.scala
@@ -6,7 +6,12 @@ import java.util.stream.Stream as JStream
6
import scala.collection.JavaConverters.*
7
8
object IdempotencyCheck {
9
- val blacklisted = Set(
+ val flakytests =
10
+ if scala.util.Properties.isWin
11
+ then Set(s"pos{JFile.separator}i6507b")
12
+ else Set.empty
13
+
14
+ val blacklisted = flakytests ++ Set(
15
// No fix needed. Bridges on collections in different order. Second one in scala2 order.
16
s"pos{JFile.separator}Map{JFile.separator}scala{JFile.separator}collection{JFile.separator}immutable/Map",
17
s"pos{JFile.separator}Map{JFile.separator}scala{JFile.separator}collection{JFile.separator}immutable{JFile.separator}AbstractMap",
0 commit comments