guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit ef24dcba23e61a8d4310763c92e858f383e21520
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Feb 8 11:52:06 2026 +0100
gnu: python-vsg: Remove pytest plugin inputs.
* gnu/packages/electronics.scm (python-vsg)
[arguments]<#:phases>: Drop modifications.
[inputs]: Remove python-pytest-cov and python-pytest-html, add
python-pytest.
Change-Id: I9d8519112b301a1245634746ee678be0e835cf8a
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/electronics.scm | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 80fc8b2f76..ed0609b7f8 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -3525,18 +3525,9 @@ design.")
;; Tests are expensive and may introduce race condition on systems with
;; high (more than 16) threads count; limit parallel jobs to 8x.
#~(list
- "--numprocesses" (number->string (min 8 (parallel-job-count))))
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'pathch-pytest-options
- (lambda _
- (substitute* "pyproject.toml"
- ((".*--cov=.*") "")
- ((".*--self-contained-html.*") "")
- ((".*-n.*auto.*") "")))))))
+ "--numprocesses" (number->string (min 8 (parallel-job-count))))))
(native-inputs
- (list python-pytest-cov
- python-pytest-html
+ (list python-pytest
python-pytest-xdist
python-setuptools))
(propagated-inputs