[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
165/361: gnu: python-pytest-runner: Improve package style.
From: |
guix-commits |
Subject: |
165/361: gnu: python-pytest-runner: Improve package style. |
Date: |
Fri, 22 Nov 2024 06:00:33 -0500 (EST) |
andreas pushed a commit to branch python-team
in repository guix.
commit dff43f9a4494ef2fe718fc0c7286ef57209b91d7
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Fri May 10 00:53:28 2024 +0200
gnu: python-pytest-runner: Improve package style.
* gnu/packages/check.scm (python-pytest-runner):
[build-system]: Move to pyproject-build-system.
[arguments]<#:phases>: Remove check phase replacement. Update
<#:tests?> refusal comment.
[native-inputs]: Add python-pip, python-pypa-build,
python-setuptools and python-wheel.
Change-Id: Id36e7ed4a3cec6098f0877f48f3fbcbd8007f3c3
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/check.scm | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 8c6bbcd4c3..fd290178bb 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1994,10 +1994,10 @@ Python's @code{random.seed}.")
(sha256
(base32
"11dnhxnjmh4nf1j8rnvx944ha3wg8ggrgrwdcx4c7d19xmi57n5l"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
(list
- ;; FIXME: The test suite requires 'python-flake8' and 'python-black',
+ ;; FIXME: The test suite requires 'python-pytest-virtualenv',
;; but that introduces a circular dependency.
#:tests? #f
#:phases
@@ -2011,14 +2011,10 @@ Python's @code{random.seed}.")
(lambda _
(let ((whl (car (find-files "dist" "\\.whl$"))))
(invoke "pip" "--no-cache-dir" "--no-input"
- "install" "--no-deps" "--prefix" #$output whl))))
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (if tests?
- (invoke "pytest" "-vv")
- (format #t "test suite not run~%")))))))
+ "install" "--no-deps" "--prefix" #$output whl)))))))
(native-inputs
- (list python-pypa-build python-setuptools-scm python-wheel))
+ (list python-pip python-pypa-build python-pytest
+ python-setuptools python-setuptools-scm python-wheel))
(home-page "https://github.com/pytest-dev/pytest-runner")
(synopsis "Invoke py.test as a distutils command")
(description
- 64/361: gnu: Add python-pep440., (continued)
- 64/361: gnu: Add python-pep440., guix-commits, 2024/11/22
- 73/361: gnu: Add python-pytest-jupyter., guix-commits, 2024/11/22
- 69/361: gnu: Add python-uri-template., guix-commits, 2024/11/22
- 66/361: gnu: Add python-jsonschema-specifications., guix-commits, 2024/11/22
- 79/361: gnu: python-argon2-cffi: Update to 21.1.0., guix-commits, 2024/11/22
- 80/361: gnu: python-jsonschema: Update to 4.22.0., guix-commits, 2024/11/22
- 89/361: gnu: python-nbformat: Update to 5.10.4., guix-commits, 2024/11/22
- 111/361: gnu: python-graphql-core: Enable tests., guix-commits, 2024/11/22
- 211/361: gnu: python-numpydoc: Move to pyproject-build-sytem., guix-commits, 2024/11/22
- 215/361: gnu: python-matplotlib: Ignore failing tests., guix-commits, 2024/11/22
- 165/361: gnu: python-pytest-runner: Improve package style.,
guix-commits <=
- 172/361: gnu: python-flask-login: Move to pyproject-build-system., guix-commits, 2024/11/22
- 175/361: gnu: python-sphinx-autodoc-typehints: Move to pyproject-build-system., guix-commits, 2024/11/22
- 183/361: gnu: python-jaraco-classes: Move to pyproject-build-system., guix-commits, 2024/11/22
- 191/361: gnu: python-pytest-enabler: Break dependency cycle., guix-commits, 2024/11/22
- 78/361: gnu: python-send2trash: Update to 1.8.2., guix-commits, 2024/11/22
- 96/361: gnu: Add python-jupyter-events., guix-commits, 2024/11/22
- 88/361: gnu: python-ipykernel: Set environment variable., guix-commits, 2024/11/22
- 93/361: gnu: python-json-logger: Update to 2.0.7., guix-commits, 2024/11/22
- 97/361: gnu: Add python-jupyter-server-terminals., guix-commits, 2024/11/22
- 102/361: gnu: python-pydata-sphinx-theme: Disable one test., guix-commits, 2024/11/22