dev-python/pytest-benchmark: enable py3.12

Signed-off-by: Henri Gasc <gasc@eurecom.fr>
This commit is contained in:
Henri Gasc
2024-04-13 14:21:17 +02:00
parent 457273b91d
commit 95bb2b4d41
2 changed files with 12 additions and 32 deletions

View File

@@ -2,17 +2,6 @@
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<longdescription lang="en">
This plugin tightly integrates into pytest. To use this effectively you should know a thing or two about pytest first. Take a look at the introductory material or watch talks.
Few notes:
This plugin benchmarks functions and only that. If you want to measure block of code or whole programs you will need to write a wrapper function.
In a test you can only benchmark one function. If you want to benchmark many functions write more tests or use parametrization http://docs.pytest.org/en/latest/parametrize.html.
To run the benchmarks you simply use pytest to run your "tests". The plugin will automatically do the benchmarking and generate a result table. Run pytest --help for more details.
This plugin provides a benchmark fixture. This fixture is a callable object that will benchmark any function passed to it.
</longdescription>
<upstream>
<remote-id type="github">ionelmc/pytest-benchmark</remote-id>
<remote-id type="pypi">pytest-benchmark</remote-id>

View File

@@ -1,11 +1,16 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DOCS_BUILDER="sphinx"
DOCS_DEPEND="dev-python/sphinx-py3doc-enhanced-theme"
DOCS_DIR="docs"
inherit distutils-r1 docs
DESCRIPTION="py.test fixture for benchmarking code"
HOMEPAGE="
@@ -22,10 +27,8 @@ 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}]
@@ -41,24 +44,12 @@ BDEPEND="
"
EPYTEST_DESELECT=(
tests/test_benchmark.py::test_help
# The equality test is not correct (the format changed but the tests did not)
# This also deselect other tests for some reason
tests/test_cli.py::test_help
tests/test_cli.py::test_help_compare
tests/test_benchmark.py::test_abort_broken
tests/test_utils.py::test_clonefunc
)
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
}