tests: disable TestGeneratedDoc on 1.24 (tip) (#3820)

The test is currently broken due to a change to the export format.
This commit is contained in:
Alessandro Arzilli 2024-10-01 20:00:52 +02:00 committed by GitHub
parent a3d7712752
commit 4a5350fd1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -403,6 +403,9 @@ func TestGeneratedDoc(t *testing.T) {
//TODO(alexsaezm): finish CI integration
t.Skip("skipping test on Linux/PPC64LE in CI")
}
if goversion.VersionAfterOrEqual(runtime.Version(), 1, 24) {
t.Skip("disabled due to export format changes")
}
// Checks gen-cli-docs.go
var generatedBuf bytes.Buffer
commands := terminal.DebugCommands(nil)