(t *testing.T, path string, testName string)
| 554 | } |
| 555 | |
| 556 | func RunSingleTest(t *testing.T, path string, testName string) { |
| 557 | def, err := ParseTestsFile(path) |
| 558 | require.NoError(t, err) |
| 559 | for _, test := range def.Tests { |
| 560 | if test.Name == testName { |
| 561 | t.Run(test.Name, test.Run) |
| 562 | } |
| 563 | } |
| 564 | } |
| 565 | |
| 566 | type retryTestingT struct { |
| 567 | *testing.T |