(t *testing.T)
| 132 | } |
| 133 | |
| 134 | func TestReleases(t *testing.T) { |
| 135 | var tsEnv testScriptEnv |
| 136 | if err := tsEnv.fromEnv(); err != nil { |
| 137 | t.Fatal(err) |
| 138 | } |
| 139 | |
| 140 | testscript.Run(t, testScriptParamsFor(tsEnv, "release")) |
| 141 | } |
| 142 | |
| 143 | func TestRepo(t *testing.T) { |
| 144 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected