always run tests

This commit is contained in:
Maxim Dolgushin 2023-11-06 14:34:07 +07:00
parent 15d33a6fe1
commit 6c1792f023
2 changed files with 3 additions and 3 deletions

@ -14,7 +14,7 @@ ADD ./tools/migrate /bin/golang-migrate/
# Add main files to app
ADD . .
# Download go depences
RUN go mod download
# RUN go mod download
# Build app
RUN GOOS=linux go build -o bin ./...

@ -36,7 +36,7 @@ test.integration.down: ## shutting down integration environment
docker-compose -f deployments/test/docker-compose.yaml down --volumes --rmi local
test.integration.start: ## run integration test
go test ./tests/integration/...
go test -count=1 ./tests/integration/...
test.e2e.start: ## run integration test
go test ./tests/e2e/...
@ -48,4 +48,4 @@ dev.up: ## run dev environment
docker-compose -f deployments/dev/docker-compose.yaml up -d
dev.down: ## shutting down dev environment
docker-compose -f deployments/dev/docker-compose.yaml down --volumes --rmi local
docker-compose -f deployments/dev/docker-compose.yaml down --volumes --rmi local