From dd40df5fd32a08c669439162f15b7eee0bd536f0 Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Thu, 3 Apr 2014 21:55:33 +0000 Subject: [PATCH] Skip login tests because of external dependency to a hosted service. Docker-DCO-1.1-Signed-off-by: Solomon Hykes (github: shykes) Upstream-commit: 887eeb2b022a4c6d3de8c9bfc586ee82855d3cb9 Component: engine --- components/engine/integration/auth_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/engine/integration/auth_test.go b/components/engine/integration/auth_test.go index 1d9d450573..8109bbb130 100644 --- a/components/engine/integration/auth_test.go +++ b/components/engine/integration/auth_test.go @@ -16,6 +16,7 @@ import ( // - Integration tests should have side-effects limited to the host environment being tested. func TestLogin(t *testing.T) { + t.Skip("FIXME: please remove dependency on external services") os.Setenv("DOCKER_INDEX_URL", "https://indexstaging-docker.dotcloud.com") defer os.Setenv("DOCKER_INDEX_URL", "") authConfig := ®istry.AuthConfig{ @@ -34,6 +35,7 @@ func TestLogin(t *testing.T) { } func TestCreateAccount(t *testing.T) { + t.Skip("FIXME: please remove dependency on external services") tokenBuffer := make([]byte, 16) _, err := rand.Read(tokenBuffer) if err != nil {