sharlatan pushed a commit to branch python-team
in repository guix.
commit 0b4c475fa38d3413439be0ec516009b24844efa9
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Nov 11 22:04:06 2024 +0000
gnu: python-pytest-forked: Disable tests.
* gnu/packages/check.scm (python-pytest-forked): Disable tests.
Tests depends on python-py which is in maintenance mode and should not
be used in projects.
Change-Id: I6f1df45b121dc21f3af09dd9476c34d31c09a06e
---
gnu/packages/check.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 854d0e248b..1da6038445 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2128,7 +2128,9 @@ timeout has been exceeded.")
"1y93q914gwf0nshql1qix6sj826q163b04vw17zmwhsnbv00c2d3"))))
(build-system pyproject-build-system)
(arguments
- (list #:phases
+ ;; See <https://github.com/pytest-dev/pytest-forked/issues/88>.
+ (list #:tests? #f
+ #:phases
#~(modify-phases %standard-phases
(add-before 'build 'pretend-version
;; The version string is usually derived via setuptools-scm,