Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@

### Internal Changes

* Disable `DbfsIT` integration tests; legacy DBFS root is disabled on the test workspace (DBFS deprecation).

### API Changes
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading