diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-02 01:38:02 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:29 +0100 |
| commit | 744a1e07767ebaf7d37a5c4457fbdd029daeada7 (patch) | |
| tree | 90dd8cb740b54a4edcb14779a97425ccbf83c3c3 /gnu/packages/python-xyz.scm | |
| parent | d49c63c280773bb37a67cb72117e23d8b0b2215c (diff) | |
gnu: python-openpyxl: Disable failing tests.
* gnu/packages/python-xyz.scm (python-openpyxl)[arguments]
<#:test-flags>: Disable failing tests.
Change-Id: I5d8c9a02377dcd3a04ae4db886bebdf0743db028
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5d765d8b74d..48431f7c8f3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6809,6 +6809,24 @@ server.") (sha256 (base32 "17z6rrvv3q1axy9r13c2hln2pazfn9n5bhkzrbjcjakgbfjl6mss")))) (build-system pyproject-build-system) + (arguments + (list + ;; XXX: The workbook writer doesn't respect SOURCE_DATE_EPOCH + ;; https://foss.heptapod.net/openpyxl/openpyxl/-/issues/2268 + ;; It makes a few tests fail. + #:test-flags + #~(list "--ignore=openpyxl/worksheet/tests/test_read_only.py" + "-k" (string-join + (list "not test_unsupport_drawing" + "test_broken_sheet_ref" + "test_no_default_style" + "test_ctor" + "test_force_dimension" + "test_get_max_cell" + "test_read_hyperlinks_read_only" + "test_read_with_missing_cells" + "test_read_empty_rows") + " and not ")))) (native-inputs (list python-lxml-4.9 python-pillow |
