diff options
author | Vinicius Monego <monego@posteo.net> | 2024-08-23 14:53:12 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2024-09-02 17:42:24 -0300 |
commit | 7d50da20b04c90abcc56239740771a5f452c1e36 (patch) | |
tree | 3aefc7947f2e16bfa9b3d7fb5ade7950b6298b7f | |
parent | 91b21920509094846d2b4f84503eff3650e8d3a6 (diff) | |
download | guix-7d50da20b04c90abcc56239740771a5f452c1e36.tar.gz guix-7d50da20b04c90abcc56239740771a5f452c1e36.zip |
gnu: python-scikit-fuzzy: Enable tests.
* gnu/packages/python-science.scm (python-scikit-fuzzy)[arguments]:
Remove #:tests? #f and add #:test-flags.
[native-inputs]: Remove python-nose. Add python-pytest.
Change-Id: I317d6ad2fdede1a3a4737c45118932e2ddc5ce46
-rw-r--r-- | gnu/packages/python-science.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 59a5d52a00..fe146717ce 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -471,9 +471,11 @@ and linear forms into vectors.") (sha256 (base32 "0zsfyd8cpd2l82fwh3smxbwhb3bkqwlq17cbav53axma4c2k9r9f")))) (build-system pyproject-build-system) - (arguments '(#:tests? #f)) ;XXX: not compatible with newer numpy.testing + (arguments + (list + #:test-flags #~(list "--pyargs" "skfuzzy"))) (native-inputs - (list python-nose)) + (list python-pytest)) (propagated-inputs (list python-networkx python-numpy python-scipy)) (home-page "https://github.com/scikit-fuzzy/scikit-fuzzy") |