diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 22:21:15 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 22:21:23 +0100 |
commit | f0a8a4b44bdc6f9104dab4b425d76d3bbc029496 (patch) | |
tree | 97ad10ed445e71fc06a38eeee1e53f90085725a2 | |
parent | 85b5c2c8f66aed05730f6c7bdeabfaadf619bb8f (diff) | |
download | guix-f0a8a4b44bdc6f9104dab4b425d76d3bbc029496.tar.gz guix-f0a8a4b44bdc6f9104dab4b425d76d3bbc029496.zip |
gnu: python-pytooling: Skip tests on i686.
* gnu/packages/python-xyz.scm (python-pytooling) [arguments] <tests?>:
Skip on i686-linux.
Change-Id: I6612edf524c1fe22b42eafbd9cbfcfd8c35d2f73
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 01cf54c909..1f3d6a0695 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2913,6 +2913,10 @@ configuration file.") (build-system pyproject-build-system) (arguments (list + ;; Tests do not support linux-i686 system: Exception: Unknown + ;; architecture 'linux-i686' for a native Linux. + #:tests? (not (or (%current-target-system) + (target-x86-32?))) #:test-flags #~(list "tests/unit" "-k" (string-join |