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
I was wondering why I'm constantly running out of disk space, it seems that simply running the test suite (e.g. make test-postgres) dumps a bunch of terraform binaries into /tmp.
I was wondering why I'm constantly running out of disk space, it seems that simply running the test suite (e.g.
make test-postgres
) dumps a bunch of terraform binaries into/tmp
.This is the files from one run.
This is most likely slowing down our tests -- we're downloading ~200MB of zips when we should at most download it once to test that the process works.
Minimum viable fix is to ensure these end up in a
t.TempDir()
that's cleaned up at the end of the test.The text was updated successfully, but these errors were encountered: