(t testing.TB, te testEnv, remoteName, branch string)
| 189 | } |
| 190 | |
| 191 | func gitPush(t testing.TB, te testEnv, remoteName, branch string) { |
| 192 | cmd(t, te, "git", "push", "-u", remoteName, branch) |
| 193 | } |
| 194 | |
| 195 | func gitPushAllTags(t testing.TB, te testEnv, remoteName string) { |
| 196 | // to anyone reading this, don't do this on a real project, always push specific tags |
no test coverage detected