dev-python/qrcode: deselect failing test_pipe test

test_pipe and test_factory tests seem not to mock sys.stdout properly.
The issues [1,2] are related to PR [3].

[1] https://github.com/lincolnloop/python-qrcode/issues/355
[2] https://github.com/lincolnloop/python-qrcode/issues/361
[3] https://github.com/lincolnloop/python-qrcode/pull/364

Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
Petr Vaněk
2024-06-10 13:43:30 +02:00
parent 91a65f5ec6
commit 36355df0c8

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -30,8 +30,10 @@ RDEPEND="
distutils_enable_tests pytest
EPYTEST_DESELECT=(
# TODO
# sys.stdout is not properly mocked, see
# https://github.com/lincolnloop/python-qrcode/pull/364
qrcode/tests/test_script.py::ScriptTest::test_factory
qrcode/tests/test_script.py::ScriptTest::test_pipe
# release process-specific tests, broken on py3.12
qrcode/tests/test_release.py
)