| module github.com/stretchr/testify | |
| // This should match the minimum supported version that is tested in | |
| // .github/workflows/main.yml | |
| go 1.17 | |
| require ( | |
| github.com/stretchr/objx v0.5.2 // To avoid a cycle the version of testify used by objx should be excluded below | |
| gopkg.in/yaml.v3 v3.0.1 | |
| ) | |
| // Break dependency cycle with objx. | |
| // See https://github.com/stretchr/objx/pull/140 | |
| exclude github.com/stretchr/testify v1.8.4 |