We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6f7364 commit e72203eCopy full SHA for e72203e
src/execution/testset.jl
@@ -39,6 +39,8 @@ mutable struct PerfTestSet <: AbstractTestSet
39
end
40
41
42
+BenchmarkGroup = BenchmarkTools.BenchmarkGroup
43
+
44
45
# Save test results or child test sets
46
function Test.record(ts::PerfTestSet, t::Result; extra_data = nothing)
src/transform/suffix.jl
@@ -169,7 +169,7 @@ function perftestsuffix(context :: Context)
169
170
testresdict = Dict{String,Union{Dict,Test_Result}}()
171
if TS isa Vector
172
- benchmarks = BenchmarkGroup()
+ benchmarks = PerfTest.BenchmarkGroup()
173
for ts in TS
174
testresdict[ts.description * ts.iterator] = extractTestResults(TS)
175
benchmarks[ts.description * ts.iterator] = ts.benchmarks
0 commit comments