Include acceptance tests in integration tests

Call 'make vendor' otherwise it's not building
This commit is contained in:
Denis Bilenko 2025-01-27 16:44:10 +01:00
parent 884b5f26ed
commit daaf357082
1 changed files with 3 additions and 3 deletions

View File

@ -48,12 +48,12 @@ vendor:
schema:
go run ./bundle/internal/schema ./bundle/internal/schema ./bundle/schema/jsonschema.json
INTEGRATION = gotestsum --format github-actions --rerun-fails --jsonfile output.json --packages "./integration/..." -- -parallel 4 -timeout=2h
INTEGRATION = gotestsum --format github-actions --rerun-fails --jsonfile output.json --packages "./acceptance/... ./integration/..." -- -parallel 4 -timeout=2h
integration:
integration: vendor
$(INTEGRATION)
integration-short:
integration-short: vendor
$(INTEGRATION) -short
.PHONY: lint lintcheck fmt test cover showcover build snapshot vendor schema integration integration-short acc-cover acc-showcover