python312Packages.pydantic_1: disable failing tests
This commit is contained in:
parent
29e4bae0c1
commit
98c9af1ac3
1 changed files with 10 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
, pytest-mock
|
, pytest-mock
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, python-dotenv
|
, python-dotenv
|
||||||
|
, pythonAtLeast
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, setuptools
|
, setuptools
|
||||||
, typing-extensions
|
, typing-extensions
|
||||||
|
@ -62,6 +63,15 @@ buildPythonPackage rec {
|
||||||
export HOME=$(mktemp -d)
|
export HOME=$(mktemp -d)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
disabledTests = lib.optionals (pythonAtLeast "3.12") [
|
||||||
|
# depends on distuils
|
||||||
|
"test_cython_function_untouched"
|
||||||
|
# AssertionError on exact types and wording
|
||||||
|
"test_model_subclassing_abstract_base_classes_without_implementation_raises_exception"
|
||||||
|
"test_partial_specification_name"
|
||||||
|
"test_secretfield"
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
pythonImportsCheck = [ "pydantic" ];
|
pythonImportsCheck = [ "pydantic" ];
|
||||||
|
|
Loading…
Reference in a new issue