guru/dev-python/pytest-benchmark/pytest-benchmark-4.0.0.ebuild
Anna (cybertailor) Vyalkova 395916523b
dev-python/pytest-benchmark: rename dep
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2023-07-25 01:23:26 +05:00

65 lines
1.5 KiB
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="py.test fixture for benchmarking code"
HOMEPAGE="
https://pypi.python.org/pypi/pytest-benchmark/
https://github.com/ionelmc/pytest-benchmark
"
SRC_URI="https://github.com/ionelmc/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
DOCS=( {AUTHORS,CHANGELOG,README}.rst )
RDEPEND="
dev-python/py-cpuinfo[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
"
# tests include pytest-xdist integration
BDEPEND="
test? (
dev-python/aspectlib[${PYTHON_USEDEP}]
dev-python/elasticsearch[${PYTHON_USEDEP}]
dev-python/freezegun[${PYTHON_USEDEP}]
dev-python/hunter[${PYTHON_USEDEP}]
dev-python/pygal[${PYTHON_USEDEP}]
dev-python/pygaljs[${PYTHON_USEDEP}]
dev-python/pytest-xdist[${PYTHON_USEDEP}]
dev-vcs/git
dev-vcs/mercurial
)
"
EPYTEST_DESELECT=(
tests/test_benchmark.py::test_help
tests/test_cli.py::test_help
tests/test_cli.py::test_help_compare
)
distutils_enable_tests pytest
distutils_enable_sphinx docs \
dev-python/sphinx-py3doc-enhanced-theme
python_test() {
if [[ ${EPYTHON} == "python3.11" ]]; then
# https://github.com/ionelmc/pytest-benchmark/issues/231
EPYTEST_DESELECT+=(
tests/test_benchmark.py::test_abort_broken
"tests/test_utils.py::test_clonefunc[<lambda>]"
"tests/test_utils.py::test_clonefunc[f2]"
)
fi
epytest
}