commit: 86aedcbb1efe4d8113a88e8f5f75c92b7b930235 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Mar 7 15:22:37 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Mar 7 15:26:42 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86aedcbb
dev-python/pytest-jobserver: Bump to 1.1.0 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/pytest-jobserver/Manifest | 2 ++ .../pytest-jobserver/pytest-jobserver-1.1.0.ebuild | 42 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/dev-python/pytest-jobserver/Manifest b/dev-python/pytest-jobserver/Manifest index 0c5a8e225949..760a2c014a95 100644 --- a/dev-python/pytest-jobserver/Manifest +++ b/dev-python/pytest-jobserver/Manifest @@ -1 +1,3 @@ DIST pytest-jobserver-1.0.0.tar.gz 6286 BLAKE2B 88020a09b605c52745761e22e925329ef18f3c1f5bb69c92f430621eb454810f6e533135959a59c19e557c1cc98e1c808ae2b5917e0e947f1d01579ce25918b0 SHA512 e98d3908357930e3ee11082e88477c4225e86c7a357ac0e9120ebd75b3cc6ffa38d65fc37d72bbcf35530fe0949badd9c6a1ccb7a370d1ca6ae69c9694ba8e48 +DIST pytest_jobserver-1.1.0.tar.gz 11754 BLAKE2B 94954dc6db8b1a698701bb6cb4e9c190526e7874a440c9059d8b251e5ffec899229de4a4d1f9b1e74c1e1fbf390a78179d5b2957d1bb4db7b88e6fc9dea27f59 SHA512 0d6dfde282fe060ac187d9475fc8a6600254341ae7a062f95c9ef259a94bfaaab4e374363651989ecff3fbd8b2603a5802effbb53692dfa5b1658a1715239221 +DIST pytest_jobserver-1.1.0.tar.gz.provenance 9701 BLAKE2B e6fb380757ae3f7843fc3e04e02aa4381f66432738df6ee29a2d17f280128344e61172ac294bfdc88a09fd937a2617ff276ed0232d3693303c2fd0332170d9a1 SHA512 423e35342da9a76e668243b69f5dba305c4699ab8a50b1ba6a9622b249bb031afda85f4b63ccf4e5e7fbcd56a9abdea066f2d096edb76aa28ad6da262bb7cd38 diff --git a/dev-python/pytest-jobserver/pytest-jobserver-1.1.0.ebuild b/dev-python/pytest-jobserver/pytest-jobserver-1.1.0.ebuild new file mode 100644 index 000000000000..4567356722f1 --- /dev/null +++ b/dev-python/pytest-jobserver/pytest-jobserver-1.1.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 2025-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYPI_VERIFY_REPO=https://github.com/tommilligan/pytest-jobserver +PYTHON_COMPAT=( pypy3_11 python3_{11..14} python3_{13..14}t ) + +inherit distutils-r1 pypi + +DESCRIPTION="Limit parallel tests with POSIX jobserver" +HOMEPAGE=" + https://github.com/tommilligan/pytest-jobserver/ + https://pypi.org/project/pytest-jobserver/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/pytest[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGIN_LOAD_VIA_ENV=1 +EPYTEST_PLUGINS=( "${PN}" pytest-xdist ) +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + pytest_jobserver/test/test_plugin.py::test_xdist_makeflags_fails + # broken by implicit slot fix + pytest_jobserver/test/test_plugin.py::test_jobserver_token_fixture + pytest_jobserver/test/test_plugin.py::test_server_xdist + ) + + unset A MAKEFLAGS + + # missing conftest.py + epytest -p pytester +}
