guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 870223684b0ebd9c394006bdefed20450ce83b4d
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Feb 25 13:01:30 2025 +0100
gnu: python-loguru: Remove python-pytest-mypy-plugins.
* gnu/packages/python-xyz.scm (python-loguru)
[arguments]: Add in {test-flags} to skip the concerned test file.
[native-inputs]: Remove python-pytest-mypy-plugins.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 868f531b52..b563f00b62 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31472,12 +31472,16 @@ older versions of Python and so are packaged here.")
(arguments
(list
#:test-flags
- #~(list"--numprocesses" (number->string (parallel-job-count)))))
+ #~(list"--numprocesses" (number->string (parallel-job-count))
+ ;; All of these fail with: error: Cannot find implementation or
+ ;; library stub for module named "loguru"
+ "--ignore=tests/typesafety/test_logger.yml"
+ ;; Removes mypy dependency
+ "--ignore=tests/test_type_hinting.py")))
(native-inputs
(list python-flit-core
python-freezegun
python-pytest
- python-pytest-mypy-plugins
python-pytest-xdist
python-setuptools))
(propagated-inputs