python3Packages.monosat: disable failing tests
This commit is contained in:
parent
143aa3e88c
commit
17be6f75ce
2 changed files with 9 additions and 2 deletions
|
@ -65,7 +65,7 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
python = { buildPythonPackage, cython }: buildPythonPackage {
|
||||
python = { buildPythonPackage, cython, pytestCheckHook }: buildPythonPackage {
|
||||
inherit pname version src patches;
|
||||
|
||||
propagatedBuildInputs = [ core cython ];
|
||||
|
@ -85,5 +85,12 @@ let
|
|||
substituteInPlace setup.py \
|
||||
--replace 'library_dir = "../../../../"' 'library_dir = "${core}/lib/"'
|
||||
'';
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
disabledTests = [
|
||||
"test_assertAtMostOne"
|
||||
"test_assertEqual"
|
||||
];
|
||||
};
|
||||
in core
|
||||
|
|
|
@ -5366,7 +5366,7 @@ in {
|
|||
|
||||
monosat = pkgs.monosat.python {
|
||||
inherit buildPythonPackage;
|
||||
inherit (self) cython;
|
||||
inherit (self) cython pytestCheckHook;
|
||||
};
|
||||
|
||||
monotonic = callPackage ../development/python-modules/monotonic { };
|
||||
|
|
Loading…
Reference in a new issue