(m *testing.M)
| 12 | ) |
| 13 | |
| 14 | func TestMain(m *testing.M) { |
| 15 | // Build the latest version of envbox to keep in sync with any developer |
| 16 | // changes. |
| 17 | buildEnvbox() |
| 18 | |
| 19 | os.Exit(m.Run()) |
| 20 | } |
| 21 | |
| 22 | func buildEnvbox() { |
| 23 | dir, err := exec.Command("git", "rev-parse", "--show-toplevel").CombinedOutput() |
nothing calls this directly
no test coverage detected