From 3e9c93c55be06366f88b2eff850d8822026cf169 Mon Sep 17 00:00:00 2001 From: Hector Castejon Diaz Date: Tue, 9 Jun 2026 14:07:47 +0000 Subject: [PATCH] Disable DbfsIT integration tests (DBFS disabled on test workspace) Signed-off-by: Hector Castejon Diaz --- NEXT_CHANGELOG.md | 2 ++ .../src/test/java/com/databricks/sdk/integration/DbfsIT.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md index 6abd875f0..af0e69278 100644 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -14,4 +14,6 @@ ### Internal Changes +* Disable `DbfsIT` integration tests; legacy DBFS root is disabled on the test workspace (DBFS deprecation). + ### API Changes diff --git a/databricks-sdk-java/src/test/java/com/databricks/sdk/integration/DbfsIT.java b/databricks-sdk-java/src/test/java/com/databricks/sdk/integration/DbfsIT.java index 1f3e9f07b..f3a528ecb 100644 --- a/databricks-sdk-java/src/test/java/com/databricks/sdk/integration/DbfsIT.java +++ b/databricks-sdk-java/src/test/java/com/databricks/sdk/integration/DbfsIT.java @@ -16,11 +16,13 @@ import java.util.HashSet; import java.util.Set; import java.util.UUID; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @EnvContext("workspace") @ExtendWith(EnvTest.class) +@Disabled("Legacy DBFS is disabled on the test workspace (DBFS deprecation)") public class DbfsIT { // An integration test for DbfsExt which writes a file of 10 KiB to DBFS, reads the written file // back, and ensures that the contents of the file are the same as what was written out.