Helm chart generator exec plugin

This commit is contained in:
Jeffrey Regan
2019-04-16 11:02:22 -07:00
parent 50c076eb3f
commit 2545ea1019
10 changed files with 360 additions and 43 deletions

View File

@@ -32,6 +32,11 @@ function testGoTest {
go test -v ./...
}
function testNoTravisGoTest {
go test -v sigs.k8s.io/kustomize/pkg/target \
-run TestChartInflatorExecPlugin -tags=notravis
}
function testExamples {
mdrip --mode test --label test README.md ./examples
}
@@ -83,6 +88,11 @@ echo "Beginning tests..."
runTest testGoLangCILint
runTest testGoTest
if [ -z ${TRAVIS+x} ]; then
echo Not on travis, so running the notravis tests
runTest testNoTravisGoTest
fi
PATH=$HOME/go/bin:$PATH
runTest testExamples