Skip to content

Commit

Permalink
Merge pull request #3132 from mpilquist/topic/topic-suite-flaky
Browse files Browse the repository at this point in the history
Mark flaky tests
  • Loading branch information
mpilquist authored Feb 8, 2023
2 parents 834335b + 201fc8c commit d2c2cba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ class StreamCombinatorsSuite extends Fs2Suite {
.assertEmits(List(1, 3, 5, 7, 9))
}

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

Expand Down
3 changes: 2 additions & 1 deletion core/shared/src/test/scala/fs2/concurrent/TopicSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ class TopicSuite extends Fs2Suite {
}
}

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

0 comments on commit d2c2cba

Please sign in to comment.