Add a test for dependencies of grpc package #7690
Labels
Area: Testing
Includes tests and testing utilities that we have for unit and e2e tests within our repo.
Type: Testing
We should add a test in
vet.sh
to confirm that the dependencies of grpc don't change without our noticing (i.e. vet should fail if they don't match the current list).go list
can pretty easily show dependencies. We should only be checking our direct dependencies and not our transitive dependencies, since we have no control over the transitive ones. We should check thegrpc
package, thexds
package, and any other important packages that are not imported by either of those directly.The text was updated successfully, but these errors were encountered: