From ff2a0b0c5e4be99a11120fb6fe52197731e9e1cb Mon Sep 17 00:00:00 2001 From: Harinn Date: Sun, 24 May 2026 00:16:49 +0700 Subject: [PATCH] python3Packages.fastapi-versionizer: disable openapi schema tests --- .../python-modules/fastapi-versionizer/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/fastapi-versionizer/default.nix b/pkgs/development/python-modules/fastapi-versionizer/default.nix index b04648edd38b..0588b74ddcce 100644 --- a/pkgs/development/python-modules/fastapi-versionizer/default.nix +++ b/pkgs/development/python-modules/fastapi-versionizer/default.nix @@ -44,6 +44,12 @@ buildPythonPackage (finalAttrs: { pytestCheckHook ]; + disabledTestPaths = [ + # openapi schema expectations drift with newer fastapi/pydantic + "tests/test_simple.py" + "tests/test_with_root_path.py" + ]; + meta = { changelog = "https://github.com/alexschimpf/fastapi-versionizer/blob/${finalAttrs.src.tag}/CHANGELOG.md"; description = "API versionizer for FastAPI web applications";