From a98775017839c4ada53b3d8643f44d3f6b43f65e Mon Sep 17 00:00:00 2001 From: David Case Date: Thu, 12 Sep 2024 21:14:18 -0400 Subject: [PATCH] disable linter for tests --- .golangci.yml | 2 +- go.mod | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index fa4ee8c..7869bb4 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -13,7 +13,7 @@ run: issues-exit-code: 1 # include test files or not, default is true - tests: true + tests: false # list of build tags, all linters use it. Default is empty list. build-tags: diff --git a/go.mod b/go.mod index a5f4ba7..f5e9daf 100644 --- a/go.mod +++ b/go.mod @@ -6,8 +6,8 @@ toolchain go1.22.5 require ( github.com/bitcoin-sv/go-sdk v1.1.7 - github.com/bitcoinschema/go-bob v0.4.3 - github.com/bitcoinschema/go-bpu v0.1.3 + github.com/bitcoinschema/go-bob v0.5.0 + github.com/bitcoinschema/go-bpu v0.2.0 ) @@ -15,7 +15,3 @@ require ( github.com/pkg/errors v0.9.1 // indirect golang.org/x/crypto v0.21.0 // indirect ) - -replace github.com/bitcoinschema/go-bob => ../go-bob - -replace github.com/bitcoinschema/go-bpu => ../go-bpu