summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 16:25:39 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:00 +0100
commit304ea22d06d50b09ae2eb7397bf3e3e2725049d3 (patch)
tree4aeeebc450d81ce73d431e97a2eb4251ea8c0c58
parentef2cd2d4abb3585ba683c8e65453bd701dcbf9d8 (diff)
gnu: python-pytest-subprocess: Skip 4 tests.
* gnu/packages/python-check.scm (python-pytest-subprocess) [arguments] <test-flags>: Deselect 4 tests. [native-inputs]: Remove python-wheel. Change-Id: Iabfc47a9268146eda982afe3ccfc78c9950e1f11
-rw-r--r--gnu/packages/python-check.scm14
1 files changed, 12 insertions, 2 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index e967e0b7aa..259960e0df 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3164,6 +3164,17 @@ through Python's socket interface")
(base32
"1yb5y6dqzf6k5a07yzdpw8w50bm7zbsdvv06ii7c7vyg9wx5iw6y"))))
(build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; 134 passed, 4 skipped, 4 deselected
+ #:test-flags
+ ;; XXX: Skip tests fixed on master in
+ ;; be30d9a94ba45afb600717e3fcd95b8b2ff2c60e commit, not critical,
+ ;; re-chech in the next refresh cycle.
+ #~(list "--deselect=tests/test_examples.py::test_documentation[README.rst]"
+ "--deselect=tests/test_examples.py::test_documentation[docs/index.rst]"
+ "--deselect=tests/test_subprocess.py::test_text[False]"
+ "--deselect=tests/test_subprocess.py::test_universal_newlines[False]")))
(native-inputs
(list python-anyio
python-docutils
@@ -3171,8 +3182,7 @@ through Python's socket interface")
python-pytest
python-pytest-asyncio
python-pytest-rerunfailures
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://github.com/aklajnert/pytest-subprocess")
(synopsis "Fake subprocess for Pytest")
(description