gnu: python-geopandas: Fix build.
* gnu/packages/geo.scm (python-geopandas)[arguments]: Disable broken tests. Re-enable test_fillna_no_op_returns_copy which does not fail anymore. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
4df064f37a
commit
09d0d0f6a5
1 changed files with 8 additions and 3 deletions
|
@ -715,9 +715,14 @@ pyproj, Rtree, and Shapely.")
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "pytest"
|
(invoke "pytest"
|
||||||
; Disable test that fails with
|
; Disable tests that fail due to incompatibilities
|
||||||
; NotImplementedError in pandas.
|
; with our pandas version.
|
||||||
"-k" "not test_fillna_no_op_returns_copy"
|
"-k"
|
||||||
|
(string-append
|
||||||
|
"not test_getitem_invalid"
|
||||||
|
" and not test_value_counts"
|
||||||
|
" and not test_setitem_invalid"
|
||||||
|
" and not test_insert_invalid")
|
||||||
; Disable tests that require internet access.
|
; Disable tests that require internet access.
|
||||||
"-m" "not web")))))))
|
"-m" "not web")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Reference in a new issue