Hacker News new | ask | show | jobs
by iamkoch 843 days ago
If you build inside docker, running tests that use docker is a pain.

Go has a lot of in-memory versions of things for tests, which run so much quicker than leaning on docker. Similarly, I found C# has in-memory versions of deps you can lean on.

I really feel that test containers, although solving a problem, often introduces others for no great benefit

1 comments

Why test inside of build process?