summaryrefslogtreecommitdiffstats
path: root/hugolib/integrationtest_builder.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-05-15 08:39:52 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-05-15 08:39:52 +0200
commite0e19a934f4a006ee4832efd49cb3d91da6109b4 (patch)
tree1394e67c241c8537b893824fdb8aa26891fa1555 /hugolib/integrationtest_builder.go
parentbcd7ac77043cdf268ef8bf6f2fe33c860c48baaf (diff)
Expand the baseline benchmark a little
Diffstat (limited to 'hugolib/integrationtest_builder.go')
-rw-r--r--hugolib/integrationtest_builder.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/hugolib/integrationtest_builder.go b/hugolib/integrationtest_builder.go
index 8bd458bc1..9be3f7c2e 100644
--- a/hugolib/integrationtest_builder.go
+++ b/hugolib/integrationtest_builder.go
@@ -207,7 +207,7 @@ func (s *IntegrationTestBuilder) BuildE() (*IntegrationTestBuilder, error) {
return s, err
}
- err := s.build(BuildCfg{})
+ err := s.build(s.Cfg.BuildCfg)
return s, err
}
@@ -503,4 +503,6 @@ type IntegrationTestConfig struct {
NeedsNpmInstall bool
WorkingDir string
+
+ BuildCfg BuildCfg
}