Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
Add make command for running docker-compose up
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught committed Jan 26, 2022
1 parent a43de93 commit 2d85f12
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ test: fmtcheck
@echo $(PKGS) | \
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4 -run ^$(TESTS)$

testacc: fmtcheck
testacc: fmtcheck dev-up
@TF_ACC=1 go test $(PKGS) -v $(TESTARGS) -timeout 120m -coverprofile=$(COVERS) -run ^$(TESTS)$

vet:
Expand All @@ -46,4 +46,7 @@ errcheck:
docgen:
go run scripts/gendocs.go -resource auth0_<resource>

.PHONY: build test testacc vet fmt fmtcheck errcheck docgen
dev-up:
@docker-compose up -d

.PHONY: build test testacc vet fmt fmtcheck errcheck docgen dev-up

0 comments on commit 2d85f12

Please sign in to comment.