Commit c9fb0b33 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.typish: disable failing test on Python 3.11

parent 348edf4f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
, fetchFromGitHub
, numpy
, pytestCheckHook
, pythonAtLeast
, pythonOlder
}:

@@ -31,6 +32,11 @@ buildPythonPackage rec {
    "tests/functions/test_instance_of.py"
  ];

  disabledTests = lib.optionals (pythonAtLeast "3.11") [
    # https://github.com/ramonhagenaars/typish/issues/32
    "test_get_origin"
  ];

  pythonImportsCheck = [
    "typish"
  ];