(t *testing.T)
| 123 | } |
| 124 | |
| 125 | func TestPullRequests(t *testing.T) { |
| 126 | var tsEnv testScriptEnv |
| 127 | if err := tsEnv.fromEnv(); err != nil { |
| 128 | t.Fatal(err) |
| 129 | } |
| 130 | |
| 131 | testscript.Run(t, testScriptParamsFor(tsEnv, "pr")) |
| 132 | } |
| 133 | |
| 134 | func TestReleases(t *testing.T) { |
| 135 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected