fix(pkg/helm): skip test that can't run in Circle

Right now, some tests need a Tiller instance, and the WIP for that isn't
done yet. So for now, skip this test.
pull/723/head
Matt Butcher 9 years ago
parent 5c942226a3
commit b199d8f58b

@ -8,6 +8,11 @@ import (
)
func TestInstallReleaseOverrides(t *testing.T) {
// FIXME: This can't currently run unless a Tiller server is running, simply
// because --dry-run still uses the server. There's already a WIP for a
// testing harness, so this can be ported when that is done.
t.Skip()
vals := `name = "mariner"`
ch := "./testdata/albatross"
ir, err := InstallRelease([]byte(vals), ch, true)

Loading…
Cancel
Save