(filenameWithoutExtension, content string)
| 302 | } |
| 303 | |
| 304 | func createSQLFile(filenameWithoutExtension, content string) error { |
| 305 | return os.WriteFile(filenameWithoutExtension+".sql", []byte(content), 0644) |
| 306 | } |
| 307 | |
| 308 | func cloudqueryTest(filenameWithoutExtension string) string { |
| 309 | cmd := exec.Command("cloudquery", "test", filenameWithoutExtension+".yaml") |