2021-05-21 19:54:32 +02:00
|
|
|
# Copyright 2021 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( python3_{8..9} )
|
|
|
|
inherit distutils-r1 multiprocessing
|
|
|
|
|
|
|
|
DESCRIPTION="py.test fixture for benchmarking code"
|
|
|
|
HOMEPAGE="https://github.com/ionelmc/pytest-benchmark"
|
|
|
|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="BSD-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="doc test"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
dev-python/aspectlib[${PYTHON_USEDEP}]
|
|
|
|
dev-python/elasticsearch-py[${PYTHON_USEDEP}]
|
|
|
|
dev-python/py-cpuinfo[${PYTHON_USEDEP}]
|
|
|
|
dev-python/pygal[${PYTHON_USEDEP}]
|
|
|
|
dev-python/pygaljs[${PYTHON_USEDEP}]
|
|
|
|
dev-python/pytest[${PYTHON_USEDEP}]
|
|
|
|
"
|
|
|
|
DEPEND="
|
|
|
|
dev-python/sphinx-py3doc-enhanced-theme[${PYTHON_USEDEP}]
|
|
|
|
test? (
|
2021-12-11 23:20:21 +01:00
|
|
|
${RDEPEND}
|
|
|
|
dev-python/freezegun[${PYTHON_USEDEP}]
|
|
|
|
dev-python/pytest-xdist[${PYTHON_USEDEP}]
|
2021-05-21 19:54:32 +02:00
|
|
|
)
|
|
|
|
"
|
|
|
|
BDEPEND="
|
|
|
|
dev-python/sphinx
|
|
|
|
"
|
|
|
|
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
|
|
|
|
DOCS=( "README.rst" )
|
|
|
|
|
|
|
|
python_prepare_all() {
|
|
|
|
sed -i\
|
|
|
|
-e "/def test_help(testdir):/i@pytest.mark.xfail(reason='Not quite sure why it fails in the ebuild, please tell if it succeeds')" \
|
|
|
|
-e "/def test_help_compare(testdir, args):/i@pytest.mark.xfail(reason='Not quite sure why it fails in the ebuild, please tell if it succeeds')" \
|
|
|
|
tests/test_cli.py || die
|
|
|
|
distutils-r1_python_prepare_all
|
|
|
|
}
|
|
|
|
|
|
|
|
python_compile_all() {
|
|
|
|
if use doc; then
|
|
|
|
sphinx-build -b html docs docs/_build/html || die
|
|
|
|
fi
|
|
|
|
sphinx-build -b man docs docs/_build/man || die
|
|
|
|
}
|
|
|
|
|
|
|
|
python_test() {
|
|
|
|
distutils_install_for_testing
|
|
|
|
epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
|
|
|
|
}
|
|
|
|
|
|
|
|
python_install_all() {
|
|
|
|
use doc && HTML_DOCS=( docs/_build/html/. )
|
|
|
|
doman docs/_build/man/*
|
|
|
|
distutils-r1_python_install_all
|
|
|
|
}
|