From 6ffc272c1f45cf42a4174af3bcf9e9cbcd592338 Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Thu, 26 Mar 2026 14:10:28 +0100 Subject: [PATCH] Install Pythons on integration tests Follow up to https://github.com/databricks/cli/pull/4844 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d85882493a..b31bb73d08 100644 --- a/Makefile +++ b/Makefile @@ -177,15 +177,15 @@ docs: INTEGRATION = go run -modfile=tools/go.mod ./tools/testrunner/main.go ${GO_TOOL} gotestsum --format github-actions --rerun-fails --jsonfile output.json --packages "./acceptance ./integration/..." -- -parallel 4 -timeout=2h .PHONY: integration -integration: +integration: install-pythons $(INTEGRATION) .PHONY: integration-short -integration-short: +integration-short: install-pythons DATABRICKS_TEST_SKIPLOCAL=1 VERBOSE_TEST=1 $(INTEGRATION) -short .PHONY: dbr-integration -dbr-integration: +dbr-integration: install-pythons DBR_ENABLED=true go test -v -timeout 4h -run TestDbrAcceptance$$ ./acceptance # DBR acceptance tests - run on Databricks Runtime using serverless compute