diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-13 12:52:01 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-18 17:06:05 +0200 |
commit | 3d3100d8b1df073e26cc42d20726711b0873d9b1 (patch) | |
tree | 7e67d35cba41f87c8e931a5535cab68fbc701e53 /gnu | |
parent | 01459241f4d369ac21611940f9f581f553f286d1 (diff) | |
download | guix-3d3100d8b1df073e26cc42d20726711b0873d9b1.tar.gz |
gnu: python-pympler: Disable test that fails with Python 3.10.
* gnu/packages/python-xyz.scm (python-pympler)[arguments]: New field. Skip one test.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 13928bd6f0..323a435beb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3861,6 +3861,18 @@ JavaScript-like message boxes. Types of dialog boxes include: (base32 "1ynkqpv2akldmvkll5vh5zhwj433s1d59iv0f76lygyak4silgwr")))) (build-system python-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'skip-broken-test + (lambda _ + ;; FIXME: This test fails for no good reason: + ;; https://github.com/pympler/pympler/issues/153 + (substitute* "test/muppy/test_tracker.py" + (("^([[:blank:]]+)def test_stracker_create_summary" all indent) + (string-append indent "@unittest.skipIf(True, \ +'Fails on Guix too for unknown reasons')\n" all)))))))) (synopsis "Measure, monitor and analyze memory behavior") (description "Pympler is a development tool to measure, monitor and analyze |