python312Packages.py-ubjson: disable failing test
This commit is contained in:
parent
d32dd3fe56
commit
a87a8029e0
1 changed files with 11 additions and 2 deletions
|
@ -20,9 +20,18 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
pytestFlagsArray = [ "test/test.py" ];
|
||||
disabledTests = [
|
||||
# https://github.com/Iotic-Labs/py-ubjson/issues/18
|
||||
"test_recursion"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "ubjson" ];
|
||||
pytestFlagsArray = [
|
||||
"test/test.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"ubjson"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Universal Binary JSON draft-12 serializer for Python";
|
||||
|
|
Loading…
Reference in a new issue