Go's test caching doesn't work well in the e2e test, which runs a bunch of external commands. Go has no way of knowing if these external dependencies changed since the last test run. This PR makes make test-with-integration run without caching to avoid this issue.
Go's test caching doesn't work well in the e2e test, which runs a bunch of external commands. Go has no way of knowing if these external dependencies changed since the last test run. This PR makes
make test-with-integration
run without caching to avoid this issue.