Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

config/allconfig: Error not thrown when output format is not defined #13199

Closed
jmooring opened this issue Dec 29, 2024 · 0 comments · Fixed by #13200
Closed

config/allconfig: Error not thrown when output format is not defined #13199

jmooring opened this issue Dec 29, 2024 · 0 comments · Fixed by #13200
Assignees

Comments

@jmooring
Copy link
Member

jmooring commented Dec 29, 2024

Reference: https://discourse.gohugo.io/t/seems-hugo-no-longer-throw-an-error-if-output-format-is-invalid/52912

This worked as expected through v0.122.0. Failing test:

// Issue 13199
func TestInvalidOutputFormat(t *testing.T) {
	t.Parallel()

	files := `
-- hugo.toml --
disableKinds = ['page','rss','section','sitemap','taxonomy','term']
[outputs]
home = ['html','foo']
-- layouts/index.html --
x
`

	b, err := hugolib.TestE(t, files)
	b.Assert(err.Error(), qt.Contains, `failed to create config: unknown output format "foo" for kind "home"`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant