mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-09 12:20:49 -04:00
Dropped 3.1.3 because there's no way I'm messing with tests in another one version! >.< Closes: https://bugs.gentoo.org/787050 Signed-off-by: Anna Vyalkova <cyber@sysrq.in>
71 lines
1.8 KiB
Bash
71 lines
1.8 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{7,8} )
|
|
|
|
DISTUTILS_USE_SETUPTOOLS=rdepend
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Hunter is a flexible code tracing toolkit"
|
|
HOMEPAGE="
|
|
https://github.com/ionelmc/python-hunter
|
|
https://pypi.org/project/hunter
|
|
"
|
|
SRC_URI="https://github.com/ionelmc/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="dev-python/colorama[${PYTHON_USEDEP}]"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
test? (
|
|
dev-python/aspectlib[${PYTHON_USEDEP}]
|
|
dev-python/manhole[${PYTHON_USEDEP}]
|
|
dev-python/pytest-benchmark[${PYTHON_USEDEP}]
|
|
dev-python/process-tests[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
BDEPEND="
|
|
dev-python/cython[${PYTHON_USEDEP}]
|
|
>=dev-python/setuptools_scm-3.3.1[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
S="${WORKDIR}/python-${P}"
|
|
|
|
distutils_enable_tests pytest
|
|
distutils_enable_sphinx docs ">=dev-python/sphinx-py3doc-enhanced-theme-2.3.2"
|
|
|
|
python_prepare_all() {
|
|
# all tests in this file fail
|
|
rm tests/test_remote.py || die
|
|
|
|
sed 's/setuptools_scm>=3.3.1,!=4.0.0,<6.0/setuptools_scm>=3.3.1/' \
|
|
-i setup.py || die
|
|
|
|
distutils-r1_python_prepare_all
|
|
}
|
|
|
|
python_compile() {
|
|
distutils-r1_python_compile
|
|
|
|
if use test; then
|
|
"${EPYTHON}" tests/setup.py build_ext --force --inplace || die
|
|
fi
|
|
}
|
|
|
|
python_test() {
|
|
local -x PYTHONPATH="${S}/tests:${BUILD_DIR}/lib:${PYTHONPATH}"
|
|
epytest --ignore=src \
|
|
--deselect tests/test_integration.py::test_pth_activation \
|
|
--deselect tests/test_integration.py::test_pth_sample4 \
|
|
--deselect tests/test_integration.py::test_pth_sample2 \
|
|
--deselect tests/test_integration.py::test_depth_limit_subprocess[depth_lt=2] \
|
|
--deselect tests/test_integration.py::test_depth_limit_subprocess[depth_lt=3] \
|
|
--deselect tests/test_integration.py::test_depth_limit_subprocess[depth_lt=4]
|
|
}
|