You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For compatibility with go modules, the import path in the go.mod file in this repo must have a /v2 suffix. Otherwise users of this library will get:
go: gotest.tools/v2@v2.3.0: go.mod has non-.../v2 module path "gotest.tools" (and .../v2/go.mod does not exist) at revision v2.3.0
The workaround is for users to add the following to their go.mod file:
// The import path for this version doesn't work with go.mod because the go.mod file is missing the version suffix
replace gotest.tools => gotest.tools v2.3.0
The text was updated successfully, but these errors were encountered:
For compatibility with go modules, the import path in the go.mod file in this repo must have a /v2 suffix. Otherwise users of this library will get:
The workaround is for users to add the following to their go.mod file:
The text was updated successfully, but these errors were encountered: