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
git clone git@codeberg.org:mellium/xmpp.git
cd xmpp
go test -v -tags "integration" -run Integration ...
Annoyingly, this only happens when running integration tests. This exact output happens after bumping the version in go.mod to 1.22 or 1.23, but a similar thing happens with the existing Go version (currently 1.18)
What did you see happen?
$ go test -v -tags "integration" -run Integration ...
go: updates to go.mod needed; to update it:
go mod tidy
$ go mod tidy
$ go test -v -tags "integration" -run Integration ...
go: updates to go.mod needed; to update it:
go mod tidy
What did you expect to see?
Tests run after running go mod tidy.
EDIT: everything appears to be working in CI, so maybe it's something to do with my setup or Arch specifically.
The text was updated successfully, but these errors were encountered:
I stared at this for ages trying to figure out where in the world that dependency came from and what the difference between CI and local was; that's it. Thanks!
Go version
go version go1.23.0 linux/amd64
Output of
go env
in your module/workspace:What did you do?
Tried to run my integration tests:
Annoyingly, this only happens when running integration tests. This exact output happens after bumping the version in go.mod to 1.22 or 1.23, but a similar thing happens with the existing Go version (currently 1.18)
What did you see happen?
$ go test -v -tags "integration" -run Integration ...
go: updates to go.mod needed; to update it:
go mod tidy
$ go mod tidy
$ go test -v -tags "integration" -run Integration ...
go: updates to go.mod needed; to update it:
go mod tidy
What did you expect to see?
Tests run after running go mod tidy.
EDIT: everything appears to be working in CI, so maybe it's something to do with my setup or Arch specifically.
The text was updated successfully, but these errors were encountered: