mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
www-client/qutebrowser: backport pyyaml-6.0 test fix
Closes: https://github.com/gentoo/gentoo/pull/22571 Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
https://github.com/qutebrowser/qutebrowser/commit/1547a48
|
||||
From: Florian Bruhin <me@the-compiler.org>
|
||||
Date: Thu, 14 Oct 2021 09:05:07 +0200
|
||||
Subject: [PATCH] tests: Adjust for PyYAML 6.0
|
||||
--- a/tests/unit/utils/test_utils.py
|
||||
+++ b/tests/unit/utils/test_utils.py
|
||||
@@ -809,8 +809,11 @@ def test_load(self):
|
||||
assert utils.yaml_load("[1, 2]") == [1, 2]
|
||||
|
||||
def test_load_float_bug(self):
|
||||
- with pytest.raises(yaml.YAMLError):
|
||||
+ try:
|
||||
utils.yaml_load("._")
|
||||
+ except yaml.YAMLError:
|
||||
+ # Either no exception or YAMLError, not ValueError
|
||||
+ pass
|
||||
|
||||
def test_load_file(self, tmp_path):
|
||||
tmpfile = tmp_path / 'foo.yml'
|
||||
@@ -58,6 +58,10 @@ BDEPEND="
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-pyyaml60.patch
|
||||
)
|
||||
|
||||
python_prepare_all() {
|
||||
distutils-r1_python_prepare_all
|
||||
|
||||
|
||||
Reference in New Issue
Block a user