[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#57462] [PATCH 10/15] gnu: python-pip-run: Don't ask to run tests wh
From: |
Maxime Devos |
Subject: |
[bug#57462] [PATCH 10/15] gnu: python-pip-run: Don't ask to run tests when cross-compiling. |
Date: |
Sun, 28 Aug 2022 16:47:43 +0200 |
* gnu/packages/python-xyz.scm
(python-pip-run)[arguments]{#:tests?}: When cross-compiling, set to #false.
---
gnu/packages/python-xyz.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index eeb575af93..7d74cfdc15 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12393,7 +12393,7 @@ (define-public python-pip-run
(arguments
(substitute-keyword-arguments (package-arguments python-pip-run-bootstrap)
((#:tests? _ #f)
- #t)
+ (not (%current-target-system)))
((#:phases phases #~%standard-phases)
#~(modify-phases #$phases
(replace 'check
--
2.37.1
- [bug#57462] [PATCH 00/15] Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 01/15] gnu: ghc-statistics: Properly enable tests., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 03/15] gnu: julia-forwarddiff: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 02/15] gnu: julia-arrayinterface: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 04/15] gnu: julia-reversediff: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 05/15] gnu: julia-interpolations: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 07/15] gnu: python-fonttools-full: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 06/15] gnu: proot: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 08/15] gnu: python-path: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 10/15] gnu: python-pip-run: Don't ask to run tests when cross-compiling.,
Maxime Devos <=
- [bug#57462] [PATCH 13/15] gnu: ruby-rubocop: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 09/15] gnu: python-jaraco-functools: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 14/15] gnu: rust: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 15/15] gnu: yt-dlp: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 11/15] gnu: python-jupyter-client: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28
- [bug#57462] [PATCH 12/15] gnu: python-jaraco-context: Don't ask to run tests when cross-compiling., Maxime Devos, 2022/08/28