python3Packages.pympler: disable failing test
This commit is contained in:
parent
9628bac854
commit
dc9fdf545c
@ -1,6 +1,7 @@
|
|||||||
{ lib, stdenv
|
{ lib, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -12,9 +13,15 @@ buildPythonPackage rec {
|
|||||||
sha256 = "993f1a3599ca3f4fcd7160c7545ad06310c9e12f70174ae7ae8d4e25f6c5d3fa";
|
sha256 = "993f1a3599ca3f4fcd7160c7545ad06310c9e12f70174ae7ae8d4e25f6c5d3fa";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
checkInputs = [
|
||||||
rm test/asizeof/test_asizeof.py
|
pytestCheckHook
|
||||||
'';
|
];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# 'AssertionError: 'function (test.muppy.test_summary.func)' != 'function (muppy.test_summary.func)'
|
||||||
|
# https://github.com/pympler/pympler/issues/134
|
||||||
|
"test_repr_function"
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = stdenv.hostPlatform.isLinux;
|
doCheck = stdenv.hostPlatform.isLinux;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user