python312Packages.logical-unification: disable failing test

This commit is contained in:
Martin Weinelt 2024-03-27 15:29:04 +01:00
parent bac08d89a6
commit b17785e4bb
1 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonAtLeast
, toolz
, multipledispatch
, py
@ -33,6 +34,11 @@ buildPythonPackage rec {
pytest-benchmark # Needed for the `--benchmark-skip` flag
];
disabledTests = lib.optionals (pythonAtLeast "3.12") [
# Failed: DID NOT RAISE <class 'RecursionError'>
"test_reify_recursion_limit"
];
pytestFlagsArray = [
"--benchmark-skip"
"--html=testing-report.html"