How to Test Local Changes with Go Mod

--

We are developing on two different Go projects using modules:

  • A github.com/acme/bar module
  • Another github.com/acme/foo module that depends on the first one

Let’s say we made some changes to github.com/acme/bar and we would like to test the impacts on github.com/acme/foo before committing them.

Without Go modules, it was pretty straightforward as our changes were done in GOPATH so they were automatically reflected.

With Go modules, the trick is to replace our import by the physical location of the project:

Here, /path/to/local/bar is the actual location of the bar project containing the local changes.

We can also use the following command:

go mod edit -replace github.com/acme/bar=/path/to/local/bar

Voilà.

If you enjoyed this post, you may be interested in my newsletter:

--

--

Teiva Harsanyi
Teiva Harsanyi

Written by Teiva Harsanyi

Software Engineer @Google | The Coder Cafe newsletter (https://thecoder.cafe) | 📖 100 Go Mistakes author | 改善

Responses (4)