# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 pypi DESCRIPTION="Functest is a test tool/framework for testing in Python" HOMEPAGE="https://pypi.org/project/functest/" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="amd64 x86" RESTRICT="mirror" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" python_prepare_all() { # purge test folder to avoid file collisions sed -e "s:find_packages():find_packages(exclude=['tests','tests.*']):" -i setup.py || die distutils-r1_python_prepare_all } python_test() { PATH="scripts:${PATH}" nosetests || die "Tests fail with ${EPYTHON}" }