From 3b5d12fd6c81a27dc3e30b560d1eb8fb8399f15e Mon Sep 17 00:00:00 2001 From: fguisso Date: Mon, 17 Feb 2020 18:21:01 -0300 Subject: [PATCH] make: remove remaining wtclientrpc flags --- .golangci.yml | 1 - make/testing_flags.mk | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 2051938b..b3289f16 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -21,7 +21,6 @@ run: - signrpc - walletrpc - watchtowerrpc - - wtclientrpc linters-settings: govet: diff --git a/make/testing_flags.mk b/make/testing_flags.mk index 22b5926e..e4f5661c 100644 --- a/make/testing_flags.mk +++ b/make/testing_flags.mk @@ -61,6 +61,6 @@ backend = btcd endif # Construct the integration test command with the added build flags. -ITEST_TAGS := $(DEV_TAGS) rpctest chainrpc walletrpc signrpc invoicesrpc autopilotrpc routerrpc watchtowerrpc wtclientrpc $(backend) +ITEST_TAGS := $(DEV_TAGS) rpctest chainrpc walletrpc signrpc invoicesrpc autopilotrpc routerrpc watchtowerrpc $(backend) ITEST := rm lntest/itest/*.log; date; $(GOTEST) -v ./lntest/itest -tags="$(ITEST_TAGS)" $(TEST_FLAGS) -logoutput -goroutinedump