Skip to content

Commit 79b1e6b

Browse files
committed
adjust test script to have all the output and more readable
1 parent cb13cd7 commit 79b1e6b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

samples/outlier_removal.exs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ suite =
88
"map.flatten" => fn -> list |> Enum.map(map_fun) |> List.flatten() end
99
},
1010
formatters: [{Benchee.Formatters.Console, extended_statistics: true}],
11-
exclude_outliers: true
11+
exclude_outliers: true,
12+
warmup: 0,
13+
time: 1
1214
)
1315

1416
suite.scenarios
1517
|> Enum.map(fn scenario ->
1618
statistics = scenario.run_time_data.statistics
1719

18-
{scenario.name, length(statistics.outliers), statistics.outliers,
19-
statistics.lower_outlier_bound, statistics.upper_outlier_bound}
20+
{scenario.name, length(statistics.outliers), statistics.lower_outlier_bound,
21+
statistics.upper_outlier_bound, statistics.outliers}
2022
end)
21-
|> IO.inspect()
23+
|> IO.inspect(printable_limit: :infinity, limit: :infinity)

0 commit comments

Comments
 (0)