diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 263efb83..cc9161fc 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -27,7 +27,9 @@ jobs: run: make misc tests: - needs: build + needs: + - go-version + - build name: Tests strategy: diff --git a/esdb/containers_test.go b/esdb/containers_test.go index 65d30865..1389837c 100644 --- a/esdb/containers_test.go +++ b/esdb/containers_test.go @@ -268,6 +268,8 @@ func createTestClient(conn string, container *Container, t *testing.T) *esdb.Cli t.Fatalf("Unexpected configuration error: %s", err.Error()) } + fmt.Println(spew.Sdump(config)) + client, err := esdb.NewClient(config) if err != nil { t.Fatalf("Unexpected failure setting up test connection: %s", err.Error())