Skip to content

Commit

Permalink
fix: small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
parikshitg committed Sep 23, 2024
1 parent 92afb3e commit 518676e
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,6 @@ build:
test:
go test $(GOTEST_FLAGS) -v -race ./...

.PHONY: test-integration
test-integration:
# run required docker containers, execute integration tests, stop containers after tests
docker compose -f test/docker-compose.yml up --quiet-pull -d --wait
go test $(GOTEST_FLAGS) -v -race ./...; ret=$$?; \
docker compose -f test/docker-compose.yml down; \
exit $$ret

.PHONY: gofumpt
gofumpt:
go install mvdan.cc/gofumpt@latest
Expand All @@ -38,11 +30,6 @@ dep:
go mod download
go mod tidy

.PHONY: mockgen
mockgen:
mockgen -package mock -source source/source.go -destination source/mock/source.go
mockgen -package mock -source destination/destination.go -destination destination/mock/destination.go

.PHONY: generate
generate:
go generate ./...
Expand Down

0 comments on commit 518676e

Please sign in to comment.