Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Disables flaky scala NDArray arange test #14413

Closed
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,8 @@ class NDArraySuite extends FunSuite with BeforeAndAfterAll with Matchers {
assert(res.toArray === Array(11f))
}

test("arange") {
// Skipping flaky test: https://github.com/apache/incubator-mxnet/issues/14402
ignore("arange") {
for (i <- 0 until 5) {
val start = scala.util.Random.nextFloat() * 5
val stop = start + scala.util.Random.nextFloat() * 100
Expand Down