python311Packages.pmdarima: fix tests

This commit is contained in:
Martin Weinelt
2024-03-18 03:23:35 +01:00
parent c9992c26c6
commit 03d64862d5
@@ -3,6 +3,7 @@
, fetchFromGitHub
, cython
, joblib
, matplotlib
, numpy
, pandas
, scikit-learn
@@ -46,7 +47,15 @@ buildPythonPackage rec {
cd $out/${python.sitePackages}
'';
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
matplotlib
pytestCheckHook
];
pytestFlagsArray = [
"-W" "ignore::pytest.PytestRemovedIn8Warning"
];
disabledTests= [
# touches internet
"test_load_from_web"