(t *testing.T)
| 2174 | } |
| 2175 | |
| 2176 | func TestRunOnlyRunsJobsHashOnce(t *testing.T) { |
| 2177 | t.Parallel() |
| 2178 | |
| 2179 | tt := fileContentTest{ |
| 2180 | Dir: "testdata/run", |
| 2181 | Target: "generate-hash", |
| 2182 | Files: map[string]string{ |
| 2183 | "hash.txt": "starting 1\n1\n2\n", |
| 2184 | }, |
| 2185 | } |
| 2186 | t.Run("", func(t *testing.T) { |
| 2187 | t.Parallel() |
| 2188 | tt.Run(t) |
| 2189 | }) |
| 2190 | } |
| 2191 | |
| 2192 | func TestRunOnlyRunsJobsHashOnceWithWildcard(t *testing.T) { |
| 2193 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…