Commit b199d8f5 authored by Matt Butcher's avatar Matt Butcher

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.
parent 5c942226
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment