diff --git a/Makefile b/Makefile index 41ff4cf4d..661f63ce3 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,8 @@ test_fast:: $(GO_TEST_FAST) ${PROJECT_PKGS} test_all:: - $(GO_TEST) ${PROJECT_PKGS} ${EXTRA_TEST_PKGS} + $(GO_TEST) ${PROJECT_PKGS} + $(GO_TEST) -v -p=1 ${EXTRA_TEST_PKGS} .PHONY: publish_tgz publish_tgz: diff --git a/tests/integration/integration_test.go b/tests/integration/integration_test.go index 41c63d06f..be7f83ccd 100644 --- a/tests/integration/integration_test.go +++ b/tests/integration/integration_test.go @@ -412,7 +412,6 @@ func TestStackDependencyGraph(t *testing.T) { assert.NotNil(t, stackInfo.Deployment) latest := stackInfo.Deployment assert.True(t, len(latest.Resources) >= 2) - fmt.Println(latest.Resources) sawFirst := false sawSecond := false for _, res := range latest.Resources {