diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-19 23:00:38 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-19 23:00:45 +0100 |
| commit | b08f7a7b315e5fa8f261abaa98366f28466cc771 (patch) | |
| tree | 721ff20f3d6d397f5d67236ef08a19ceeecce93c | |
| parent | 43eed6aa4f2d39c1780029d8c457094bb5e127d8 (diff) | |
gnu: python-pandas: Skip one test on 32bit systems.
* gnu/packages/python-science.scm (python-pandas):
[arguments] <test-flags>: Skip one test on 32bit systems.
Change-Id: Ib7c46e4573358fa3088bdc4100b9ce112381d988
| -rw-r--r-- | gnu/packages/python-science.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 7438d733fe..852bff01c0 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -4100,7 +4100,11 @@ tissue-specificity metrics for gene expression.") "-k" (string-join (list "not test_git_version" "test_parsing_tzlocal_deprecated" - "test_show_versions_console") + "test_show_versions_console" + ;; AssertionError: Series are different. + #$@(if (target-64bit?) + '() + '("test_rolling_var_numerical_issues"))) " and not ")) #:phases #~(modify-phases %standard-phases |
