diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:55:05 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-24 10:19:41 +0100 |
| commit | 69b6373c360818912d08e7f3dd6cd3dcd7b9fc46 (patch) | |
| tree | eefb0d17cf2ba727b0a3892d90b68207564a5633 /gnu/packages/python-check.scm | |
| parent | 277e6b118468e72b88065e9e0ab8d5c877f22e3e (diff) | |
gnu: python-psleak: Skip tests on 32bit systems.
If we change change the PYTHONMALLOC environment variable to default or
pymalloc then the tests pass on i686 but upstream specifically uses
malloc.
See: <https://codeberg.org/guix/guix/issues/8413#issuecomment-15183744>.
* gnu/packages/python-check.scm (python-psleak):
[arguments] <tests?>: Skip tests on 32bit system.
Change-Id: I1bfe65d40f9b7311035c21b16c81dfda528e8db1
Diffstat (limited to 'gnu/packages/python-check.scm')
| -rw-r--r-- | gnu/packages/python-check.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index b8f99785012..b888afde447 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm | |||
| @@ -2154,6 +2154,8 @@ flake8 to check PEP-8 naming conventions.") | |||
| 2154 | (build-system pyproject-build-system) | 2154 | (build-system pyproject-build-system) |
| 2155 | (arguments | 2155 | (arguments |
| 2156 | (list | 2156 | (list |
| 2157 | #:tests? (and (target-64bit?) | ||
| 2158 | (not (%current-target-system))) | ||
| 2157 | #:phases | 2159 | #:phases |
| 2158 | #~(modify-phases %standard-phases | 2160 | #~(modify-phases %standard-phases |
| 2159 | (add-before 'check 'pre-check | 2161 | (add-before 'check 'pre-check |
