This repository was archived by the owner on Sep 9, 2020. It is now read-only.
This repository was archived by the owner on Sep 9, 2020. It is now read-only.
Use only fixture repositories in tests #255
Closed
Description
We currently have a number of tests that use real projects, like github.com/Sirupsen/logrus
. When generating lock files resulting from solves involving these projects, there can be variability that results from these real repositories having new commits.
This variation doesn't add any value, and it makes our tests sloppier. We need to replace these instances of real projects with fixture repositories, and rely only on those fixture repositories in tests from here on out (unless there is a real reason for the system under test to do otherwise).
(Follow-up on #246)