summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-04 12:57:21 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:54 +0100
commit52f23b2437863f6b8d557550e0c3aa1620ff4e90 (patch)
tree17830a021e4b1536851139cadd2e25a7584f1806 /gnu/packages
parent1cbafed4bd96900fdc280484a0258ec95f4fdd11 (diff)
gnu: httpie: Skip 2 tests.
* gnu/packages/python-web.scm (httpie): [arguments] <test-flags>: Skip 2 problematic tests. [native-inputs]: Remove python-wheel. Change-Id: I36775e38714683183267a0f7456d04592f3e85d2
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-web.scm13
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index afa44911b5f..f176d7abb7f 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3403,6 +3403,7 @@ program would be built.")
(lambda _
(substitute* "setup.cfg"
(("(pip|setuptools)") "")))))
+ ;; tests: 951 passed, 23 skipped, 6 deselected, 4 xfailed, 122 warnings
#:test-flags
;; test_plugins_cli.py communicates through subprocesses
;; mocking stdin, which does not work in the build container.
@@ -3410,14 +3411,20 @@ program would be built.")
;; test_binary.py fails for an unknown reason.
#~(list "--ignore=tests/test_plugins_cli.py"
"--ignore=tests/test_ssl.py"
- "--ignore=tests/test_binary.py")))
+ "--ignore=tests/test_binary.py"
+ ;; Assertion failed to compare Unicode characters.
+ (string-append
+ "--deselect=tests/test_encoding.py"
+ "::test_terminal_output_request_charset_detection")
+ (string-append
+ "--deselect=tests/test_encoding.py"
+ "::test_terminal_output_response_charset_detection"))))
(native-inputs (list python-pytest
python-pytest-httpbin
python-pytest-mock
python-responses
python-setuptools
- python-werkzeug
- python-wheel))
+ python-werkzeug))
(propagated-inputs
(list python-charset-normalizer
python-defusedxml