path="incompat1"
[[module.imports]]
path="incompat2"
-
+[[module.imports]]
+path="incompat3"
`)
b.WithSourceFile("themes/incompat2/theme.toml", `
min_version = "5.0.0"
+`)
+
+ // Issue 6162
+ b.WithSourceFile("themes/incompat3/theme.toml", `
+min_version = 0.55.0
+
`)
logger := loggers.NewWarningLogger()
c := qt.New(t)
- c.Assert(logger.WarnCounter.Count(), qt.Equals, uint64(2))
+ c.Assert(logger.WarnCounter.Count(), qt.Equals, uint64(3))
}
}
themeCfg, err = metadecoders.Default.UnmarshalToMap(data, metadecoders.TOML)
if err != nil {
- return errors.Wrapf(err, "failed to read module config for %q in %q", tc.Path(), themeTOML)
+ c.logger.WARN.Printf("Failed to read module config for %q in %q: %s", tc.Path(), themeTOML, err)
+ } else {
+ maps.ToLower(themeCfg)
}
- maps.ToLower(themeCfg)
}
if hasConfig {