Skip to content

Commit

Permalink
fix: stop end-to-end testing
Browse files Browse the repository at this point in the history
  • Loading branch information
renan061 committed Jun 3, 2024
1 parent f02808e commit 2c056b7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ submodules: ## Download the git submodules
test: unit-test e2e-test ## Execute all tests

.PHONY: unit-test
unit-test:## Execute unit tests
unit-test: ## Execute unit tests
@echo "Running unit tests"
@go test ./...

.PHONY: e2e-test
e2e-test: ## Execute e2e tests
@echo "Running end-to-end tests"
@go test -count=1 ./test --tags=endtoendtests
# @go test -count=1 ./test --tags=endtoendtests
@go test -count=1 ./test

.PHONY: lint
lint: ## Run the linter
Expand Down Expand Up @@ -91,3 +92,4 @@ docker-clean: ## Remove the containers and volumes from previous compose run
.PHONY: help
help: ## Show help for each of the Makefile recipes
@grep "##" $(MAKEFILE_LIST) | grep -v grep | sed -e 's/:.*##\(.*\)/:\n\t\1\n/'

0 comments on commit 2c056b7

Please sign in to comment.