mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Reverting due to regressions in dev-python/greenlet. Reverts: 15276034c45934caab9806e67e62fba370ee46a3 Signed-off-by: Michał Górny <mgorny@gentoo.org>
57 lines
1.3 KiB
Bash
57 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{11..13} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A pytest plugin for testing Twisted framework consumers"
|
|
HOMEPAGE="
|
|
https://github.com/pytest-dev/pytest-twisted/
|
|
https://pypi.org/project/pytest-twisted/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/pytest-dev/pytest-twisted/archive/v${PV}.tar.gz
|
|
-> ${P}.gh.tar.gz
|
|
"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
|
|
|
|
RDEPEND="
|
|
dev-python/decorator[${PYTHON_USEDEP}]
|
|
dev-python/greenlet[${PYTHON_USEDEP}]
|
|
>=dev-python/pytest-2.3[${PYTHON_USEDEP}]
|
|
dev-python/twisted[${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/hypothesis[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
src_prepare() {
|
|
# If we let pytest-twisted autoload everywhere, it breaks tests in
|
|
# packages that don't expect it. Apply a similar hack as for bug
|
|
# #661218.
|
|
sed -e 's/"pytest11": \[[^]]*\]//' -i setup.py || die
|
|
|
|
# https://github.com/pytest-dev/pytest/issues/9280
|
|
sed -e '/^pytest_plugins =/d' -i testing/conftest.py || die
|
|
|
|
distutils-r1_src_prepare
|
|
}
|
|
|
|
python_test() {
|
|
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
|
|
local -x PYTEST_PLUGINS=pytest_twisted
|
|
|
|
epytest -p pytester
|
|
}
|