(t *testing.T)
| 2190 | } |
| 2191 | |
| 2192 | func TestRunOnlyRunsJobsHashOnceWithWildcard(t *testing.T) { |
| 2193 | t.Parallel() |
| 2194 | |
| 2195 | tt := fileContentTest{ |
| 2196 | Dir: "testdata/run", |
| 2197 | Target: "deploy", |
| 2198 | Files: map[string]string{ |
| 2199 | "wildcard.txt": "Deploy infra\nDeploy js\nDeploy go\n", |
| 2200 | }, |
| 2201 | } |
| 2202 | t.Run("", func(t *testing.T) { |
| 2203 | t.Parallel() |
| 2204 | tt.Run(t) |
| 2205 | }) |
| 2206 | } |
| 2207 | |
| 2208 | func TestRunOnceSharedDeps(t *testing.T) { |
| 2209 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…