mirror of https://github.com/databricks/cli.git
Include acceptance tests in integration tests
Call 'make vendor' otherwise it's not building
This commit is contained in:
parent
884b5f26ed
commit
daaf357082
6
Makefile
6
Makefile
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue