Merge pull request #77704 from khenidak/legacy-cloud-providers-test

add legacy cloud providers unit tests to `make test`
This commit is contained in:
Kubernetes Prow Robot 2019-05-09 21:44:36 -07:00 committed by GitHub
commit 32b37f5a85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,6 +98,10 @@ kube::test::find_dirs() {
find ./staging/src/k8s.io/cli-runtime -name '*_test.go' \
-name '*_test.go' -print0 | xargs -0n1 dirname | sed 's|^\./staging/src/|./vendor/|' | LC_ALL=C sort -u
# add legacy cloud providers tests
find ./staging/src/k8s.io/legacy-cloud-providers -name '*_test.go' \
-name '*_test.go' -print0 | xargs -0n1 dirname | sed 's|^\./staging/src/|./vendor/|' | LC_ALL=C sort -u
)
}