[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/21: gnu: python-markupsafe: Honor #:tests in check phase.
From: |
guix-commits |
Subject: |
09/21: gnu: python-markupsafe: Honor #:tests in check phase. |
Date: |
Mon, 9 Aug 2021 08:29:06 -0400 (EDT) |
efraim pushed a commit to branch core-updates-frozen
in repository guix.
commit 70833c2ec8b200dbc704b93ff17d78a1e3cc1eed
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Aug 9 13:51:30 2021 +0300
gnu: python-markupsafe: Honor #:tests in check phase.
* gnu/pacakges/python-xyz.scm (python-markupsafe)[arguments]: Honor #:tests
flag.
---
gnu/packages/python-xyz.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 611451e..848efb2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3757,8 +3757,9 @@ e.g. filters, callbacks and errbacks can all be
promises.")
(arguments
`(#:phases (modify-phases %standard-phases
(replace 'check
- (lambda _
- (invoke "pytest" "-vv"))))))
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest" "-vv")))))))
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/mitsuhiko/markupsafe")
- branch core-updates-frozen updated (d418784 -> 36cb285), guix-commits, 2021/08/09
- 02/21: gnu: python-ruamel.yaml: Update to 0.16.13., guix-commits, 2021/08/09
- 03/21: gnu: python-pyicu: Update to 2.7.4., guix-commits, 2021/08/09
- 04/21: gnu: python-soupsieve: Fix building., guix-commits, 2021/08/09
- 01/21: gnu: Add python-ruamel.yaml.clib., guix-commits, 2021/08/09
- 08/21: gnu: python-flask: Honor #:tests in check phase., guix-commits, 2021/08/09
- 05/21: gnu: python-pytest-xprocess: Update to 0.18.1., guix-commits, 2021/08/09
- 06/21: gnu: python-werkzeug: Update to 2.0.1., guix-commits, 2021/08/09
- 07/21: gnu: python-yarl: Update to 1.6.3., guix-commits, 2021/08/09
- 09/21: gnu: python-markupsafe: Honor #:tests in check phase.,
guix-commits <=
- 10/21: gnu: python-flask: Update to 2.0.1., guix-commits, 2021/08/09
- 12/21: gnu: python-markupsafe: Update to 2.0.1., guix-commits, 2021/08/09
- 14/21: gnu: python-pytest-isort: Honor #:tests in check phase., guix-commits, 2021/08/09
- 15/21: gnu: python-pytest-isort: Update to 2.0.0., guix-commits, 2021/08/09
- 20/21: gnu: python-astroid: Update to 2.6.6., guix-commits, 2021/08/09
- 11/21: gnu: python-itsdangerous: Update to 2.0.1., guix-commits, 2021/08/09
- 13/21: gnu: python-jinja2: Update to 3.0.1., guix-commits, 2021/08/09
- 16/21: gnu: ruby-minitest: Update to 5.14.4., guix-commits, 2021/08/09
- 17/21: gnu: ruby-minitest-hooks: Update to 1.5.0., guix-commits, 2021/08/09
- 18/21: gnu: ruby-minitest-hooks: Skip tests., guix-commits, 2021/08/09