lol

python311Packages.coqpit: disable failing tests

+10
+10
pkgs/development/python-modules/coqpit/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pythonAtLeast 4 5 , pytestCheckHook 5 6 }: 6 7 ··· 23 24 pythonImportsCheck = [ 24 25 "coqpit" 25 26 "coqpit.coqpit" 27 + ]; 28 + 29 + # https://github.com/coqui-ai/coqpit/issues/40 30 + disabledTests = lib.optionals (pythonAtLeast "3.11")[ 31 + "test_init_argparse_list_and_nested" 32 + ]; 33 + 34 + disabledTestPaths = lib.optionals (pythonAtLeast "3.11")[ 35 + "tests/test_nested_configs.py" 26 36 ]; 27 37 28 38 meta = with lib; {