ci(test): no concurrency

This commit is contained in:
Julien Neuhart
2025-03-21 13:51:54 +01:00
parent 0febb60a3f
commit 2131de77b0
3 changed files with 16 additions and 10 deletions

View File

@@ -160,13 +160,15 @@ test-unit: ## Run unit tests
go test -race ./...
PLATFORM=
NO_CONCURRENCY=false
.PHONY: test-integration
test-integration: ## Run integration tests
go test -tags=integration -v github.com/gotenberg/gotenberg/v8/test/integration -args \
--gotenberg-docker-repository=$(DOCKER_REPOSITORY) \
--gotenberg-version=$(GOTENBERG_VERSION) \
--gotenberg-container-platform=$(PLATFORM)
--gotenberg-container-platform=$(PLATFORM) \
--no-concurrency=$(NO_CONCURRENCY)
.PHONY: lint
lint: ## Lint Golang codebase