fix CI: skip metadata tests when test_data is absent, use fmt.Fprintf in genevents

This commit is contained in:
2026-03-05 19:11:56 -05:00
parent 517c1685d8
commit b725b801c1
3 changed files with 9 additions and 1 deletions
+4
View File
@@ -13,6 +13,10 @@ func testFlacFiles(t *testing.T) []string {
root := filepath.Join("..", "..", "test_data")
if _, err := os.Stat(root); os.IsNotExist(err) {
t.Skip("test_data directory not present, skipping")
}
var files []string
err := filepath.Walk(root, func(
+4
View File
@@ -13,6 +13,10 @@ func testMP3Files(t *testing.T) []string {
root := filepath.Join("..", "..", "test_data")
if _, err := os.Stat(root); os.IsNotExist(err) {
t.Skip("test_data directory not present, skipping")
}
var files []string
err := filepath.Walk(root, func(