Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ libraryDependencies += "org.scala-js" %% "scalajs-env-jsdom-nodejs" % "1.0.0"

resolvers += Resolver.jcenterRepo

addSbtPlugin("net.aichler" % "sbt-jupiter-interface" % "0.8.3")
addSbtPlugin("net.aichler" % "sbt-jupiter-interface" % "0.8.3")
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ class SchedulerUnitTest
}
}

"cancel a running scheduler" in {
// commenting this test due to flakiness
/* "cancel a running scheduler" in {
val greeter =
system.actorOf(
Props(classOf[Greetings]),
Expand All @@ -167,7 +168,7 @@ class SchedulerUnitTest
schedulerInstance.isCancelled shouldBe true
expectNoMessage(1.seconds)

}
}*/

"scheduleAtFixedRate should run the next execution at fixed rate even if the previous task took more time" in {
println(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ class RandomFixedSizeSampleSpec extends AnyWordSpec with Matchers {
isSorted(list_1) shouldBe false
isSorted(list_2) shouldBe false
}
"ensure getRandomSampleShuffle is the most performant, then goes getRandomSampleZip and then getRandomSampleRec" in {
// We can't really depend on this test to check performance. So commenting this out
/*"ensure getRandomSampleShuffle is the most performant, then goes getRandomSampleZip and then getRandomSampleRec" in {
val list = List.range(0, 10_000)
val sampleSize = 100

Expand All @@ -49,7 +50,7 @@ class RandomFixedSizeSampleSpec extends AnyWordSpec with Matchers {

duration_0 should be > duration_1
duration_1 should be > duration_2
}
}*/

}

Expand Down
1 change: 1 addition & 0 deletions specialized-benchmark/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@