(t *testing.T)
| 438 | } |
| 439 | |
| 440 | func initRillProject(t *testing.T) string { |
| 441 | tempDir := t.TempDir() |
| 442 | putFiles(t, tempDir, map[string]string{"rill.yaml": `compiler: rillv1 |
| 443 | display_name: Untitled Rill Project |
| 444 | olap_connector: duckdb`, |
| 445 | }) |
| 446 | return tempDir |
| 447 | } |
| 448 | |
| 449 | func initMonorepo(t *testing.T) string { |
| 450 | tempDir := t.TempDir() |
no test coverage detected