From a79532f912de63e177c6d884da50d8209b21240a Mon Sep 17 00:00:00 2001 From: Omer Lachish Date: Tue, 2 Sep 2025 10:49:59 +0200 Subject: [PATCH] Fix pytest-xdist serialization issues in nightly tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pin pytest-xdist to version >=3.6.1,<4.0 to resolve ExceptionInfo serialization errors that were causing test failures in the nightly integration tests. The error occurred when pytest-xdist tried to serialize exception information between worker processes. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 60c33f0e6..b1314929a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ Documentation = "https://databricks-sdk-py.readthedocs.io" dev = [ "pytest", "pytest-cov", - "pytest-xdist", + "pytest-xdist>=3.6.1,<4.0", "pytest-mock", "black", "pycodestyle",