From 7a877935ac8a297f5098e6fce448681adcdb7a7a Mon Sep 17 00:00:00 2001 From: Ayan Das Date: Wed, 29 Oct 2025 20:37:46 +0530 Subject: [PATCH] gnu: python-pgmpy: Skip flaky test_get_edges. * gnu/packages/statistics.scm (python-pgmpy): Skip flaky test_get_edges. [arguments]: In #:test-flags, add "test_get_edges" to the pytest -k skip list. Add a brief comment about the FileNotFoundError in tearDown removing missing 'dog_problem.xml'. [native-inputs]: Drop python-wheel. Change-Id: I48609db063adb7d99c0813013fb95c049e874964 Signed-off-by: Sharlatan Hellseher --- gnu/packages/statistics.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index ba3b792e377e9895316ce69161ff26adef12d28b..55644b5f5612e4dca194f554850df7f1bf2a94ea 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -3590,7 +3590,10 @@ statistical summary in arrays and enumerables.") ;; failed for 10th keyword liwork: dsyevr:liwork=1 "test_estimate" "test_score_bnlearn" - "test_score_manual") + "test_score_manual" + ;; FileNotFoundError in tearDown: removes missing + ;; 'dog_problem.xml'. + "test_get_edges") " and not ")))) (propagated-inputs (list python-daft python-joblib @@ -3609,7 +3612,6 @@ statistical summary in arrays and enumerables.") python-pytest python-pytest-xdist python-setuptools - python-wheel python-xgboost)) (home-page "https://github.com/pgmpy/pgmpy") (synopsis "Probabilistic Graphical Models library")