mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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 @@ (define-public python-geopandas
|
|||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "pytest"
|
||||
; Disable test that fails with
|
||||
; NotImplementedError in pandas.
|
||||
"-k" "not test_fillna_no_op_returns_copy"
|
||||
; Disable tests that fail due to incompatibilities
|
||||
; with our pandas version.
|
||||
"-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.
|
||||
"-m" "not web")))))))
|
||||
(propagated-inputs
|
||||
|
|
Loading…
Reference in a new issue