summaryrefslogtreecommitdiff
path: root/dev-python/jeepney
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-07-07 15:01:52 -0500
committerroot <root@alpha.trunkmasters.com>2026-07-07 15:01:52 -0500
commitcab4bebbee5e50ac2d5275d645904cef772fcc17 (patch)
tree8c8703f7679be915572c609b33068ac5b25d36fa /dev-python/jeepney
parentdd6cff2d76baa289493b9d53d2f9a5bd287f5055 (diff)
downloadbaldeagleos-repo-cab4bebbee5e50ac2d5275d645904cef772fcc17.tar.gz
baldeagleos-repo-cab4bebbee5e50ac2d5275d645904cef772fcc17.tar.xz
baldeagleos-repo-cab4bebbee5e50ac2d5275d645904cef772fcc17.zip
Adding metadata
Diffstat (limited to 'dev-python/jeepney')
-rw-r--r--dev-python/jeepney/jeepney-0.9.0.ebuild14
1 files changed, 8 insertions, 6 deletions
diff --git a/dev-python/jeepney/jeepney-0.9.0.ebuild b/dev-python/jeepney/jeepney-0.9.0.ebuild
index 2867b3f286e6..14837a1ef331 100644
--- a/dev-python/jeepney/jeepney-0.9.0.ebuild
+++ b/dev-python/jeepney/jeepney-0.9.0.ebuild
@@ -18,19 +18,19 @@ HOMEPAGE="
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86"
-IUSE="examples"
+IUSE="examples test-rust"
BDEPEND="
test? (
- $(python_gen_cond_dep '
- dev-python/async-timeout[${PYTHON_USEDEP}]
- ' 3.10)
- >=dev-python/pytest-asyncio-0.7.1[${PYTHON_USEDEP}]
dev-python/testpath[${PYTHON_USEDEP}]
sys-apps/dbus
+ test-rust? (
+ dev-python/pytest-trio[${PYTHON_USEDEP}]
+ )
)
"
+EPYTEST_PLUGINS=( pytest-asyncio )
distutils_enable_tests pytest
distutils_enable_sphinx docs \
@@ -49,7 +49,9 @@ src_test() {
python_test() {
local EPYTEST_IGNORE=()
- if ! has_version "dev-python/pytest-trio[${PYTHON_USEDEP}]"; then
+ if has_version "dev-python/pytest-trio[${PYTHON_USEDEP}]"; then
+ local EPYTEST_PLUGINS=( "${EPYTEST_PLUGINS[@]}" pytest-trio )
+ else
EPYTEST_IGNORE+=( jeepney/io/tests/test_trio.py )
fi
epytest