Skip to content

Commit d2c2cba

Browse files
authored
Merge pull request #3132 from mpilquist/topic/topic-suite-flaky
Mark flaky tests
2 parents 834335b + 201fc8c commit d2c2cba

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

core/shared/src/test/scala/fs2/StreamCombinatorsSuite.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ class StreamCombinatorsSuite extends Fs2Suite {
404404
.assertEmits(List(1, 3, 5, 7, 9))
405405
}
406406

407-
test("filters up to N items in parallel") {
407+
test("filters up to N items in parallel".flaky) {
408408
val s = Stream.range(0, 100)
409409
val n = 5
410410

core/shared/src/test/scala/fs2/concurrent/TopicSuite.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ class TopicSuite extends Fs2Suite {
7171
}
7272
}
7373

74-
test("unregister subscribers under concurrent load") {
74+
// https://github.com/typelevel/fs2/issues/3071
75+
test("unregister subscribers under concurrent load".flaky) {
7576
Topic[IO, Int].flatMap { topic =>
7677
val count = 100
7778
val subs = 10

0 commit comments

Comments
 (0)