python312Packages.logical-unification: disable failing test

This commit is contained in:
Martin Weinelt 2024-03-27 15:29:04 +01:00
parent 1c1182c2e2
commit ceaf99b977
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
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"