Created
December 18, 2014 17:15
-
-
Save aweiteka/49760d648e7a10a2f8d3 to your computer and use it in GitHub Desktop.
Run unit tests on Kubernetes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh -e | |
| yum install -y git | |
| mkdir -p $GOPATH/src/github.com/GoogleCloudPlatform/ | |
| cd $GOPATH/src/github.com/GoogleCloudPlatform/ | |
| git clone https://github.com/GoogleCloudPlatform/kubernetes.git | |
| cd kubernetes | |
| hack/test-go.sh | |
| # TODO: upstream end-to-end tests | |
| # https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/devel/development.md#end-to-end-tests | |
| #KUBERNETES_PROVIDER=<provider?> | |
| #hack/e2e-test.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment