Skip to content

Commit

Permalink
skip gocyclo and linting azblob in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jhendrixMSFT committed Jul 26, 2022
1 parent 3639f20 commit 0b70bda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ DATE ?= $(shell date +%FT%T%z)
VERSION ?= $(shell git describe --tags --always --dirty --match=v* 2> /dev/null || \
cat $(CURDIR)/.version 2> /dev/null || echo v0)
BIN = $(GOPATH)/bin
GO_FILES = find . -iname '*.go' -type f | grep -v /vendor/
GO_FILES = find . -name 'internal/azure-storage-blob-go' -prune -o -iname '*.go' -type f | grep -v /vendor/

GO = go
GODOC = godoc
Expand Down Expand Up @@ -52,7 +52,7 @@ tidy: ; $(info $(M) running go mod tidy…) @ ## Run tidy

.PHONY: lint
lint: ; $(info $(M) running golangci-lint…) @ ## Run golangci-lint
$Q $(GOLINT) run
$Q $(GOLINT) run --skip-dirs "internal/azure-storage-blob-go"

.PHONY: staticcheck
staticcheck: ; $(info $(M) running staticcheck…) @ ## Run staticcheck
Expand Down

0 comments on commit 0b70bda

Please sign in to comment.