python311Packages.betterproto: disable failing pydantic tests

This commit is contained in:
Fabian Affolter 2024-01-19 09:00:20 +01:00
parent 72badb5bef
commit 8793701584

View File

@ -69,6 +69,15 @@ buildPythonPackage rec {
${python.interpreter} -m tests.generate
'';
disabledTestPaths = [
# https://github.com/danielgtaylor/python-betterproto/issues/530
"tests/inputs/oneof/test_oneof.py"
];
disabledTests = [
"test_pydantic_no_value"
];
meta = with lib; {
description = "Code generator & library for Protobuf 3 and async gRPC";
longDescription = ''