We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
postprocess=()->()
1 parent f7eac0f commit ad36c98Copy full SHA for ad36c98
test/runtests.jl
@@ -1,5 +1,6 @@
1
using PkgBenchmark
2
using BenchmarkTools
3
+using Statistics
4
using Test
5
using Dates
6
using LibGit2
@@ -73,6 +74,21 @@ temp_pkg_dir(;tmp_dir = tmp_dir) do
73
74
end
75
76
77
+ @testset "postprocess" begin
78
+ PkgBenchmark._withtemp(tempname()) do f
79
+ str = """
80
+ using BenchmarkTools
81
+ SUITE = BenchmarkGroup()
82
+ SUITE["foo"] = @benchmarkable for _ in 1:100; 1+1; end
83
+ """
84
+ open(f, "w") do file
85
+ print(file, str)
86
+ end
87
+ @test typeof(benchmarkpkg(TEST_PACKAGE_NAME, script=f;
88
+ postprocess=(r)->(r["foo"] = maximum(r["foo"]); return r))) == BenchmarkResults
89
90
91
+
92
# Make a commit with a small benchmarks.jl file
93
testpkg_path = Pkg.dir(TEST_PACKAGE_NAME)
94
LibGit2.init(testpkg_path)
0 commit comments