From 3b722c132e682d55aabd9042b40048faeac83f6f Mon Sep 17 00:00:00 2001 From: Taka Goto Date: Thu, 1 Nov 2018 10:24:03 -0500 Subject: [PATCH] integration tests hits self hosted parity kovan node: --- Makefile | 2 +- .../integration_tests/integration_tests_suite_test.go | 10 +--------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index de7cfa8f..681f34b3 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ test: | $(GINKGO) $(LINT) integrationtest: | $(GINKGO) $(LINT) go vet ./... go fmt ./... - $(GINKGO) -r --flakeAttempts=20 pkg/transformers/integration_tests/ integration_test/ + $(GINKGO) -r pkg/transformers/integration_tests/ integration_test/ .PHONY: dep dep: | $(DEP) diff --git a/pkg/transformers/integration_tests/integration_tests_suite_test.go b/pkg/transformers/integration_tests/integration_tests_suite_test.go index bbc99c1d..e2d58c2c 100644 --- a/pkg/transformers/integration_tests/integration_tests_suite_test.go +++ b/pkg/transformers/integration_tests/integration_tests_suite_test.go @@ -6,7 +6,6 @@ import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" - "github.com/spf13/viper" "io/ioutil" ) @@ -18,13 +17,6 @@ func TestIntegrationTests(t *testing.T) { } var _ = BeforeSuite(func() { - testConfig := viper.New() - testConfig.SetConfigName("staging") - testConfig.AddConfigPath("$GOPATH/src/github.com/vulcanize/vulcanizedb/environments/") - err := testConfig.ReadInConfig() - ipc = testConfig.GetString("client.ipcPath") - if err != nil { - log.Fatal(err) - } + ipc = "http://147.75.64.249:8545" //self hosted parity kovan node log.SetOutput(ioutil.Discard) })