summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2026-03-05 05:09:12 +0100
committerMichał Górny <mgorny@gentoo.org>2026-03-05 05:46:46 +0100
commit3fb8eb49e91df177e5cda224ec7013263e908685 (patch)
treeb321973f93692ce9d75219f1da33cb9bcb2d0a66 /dev-python
parent96e8b856eba1d9e1bea63e1138407670dfd0cfdb (diff)
downloadgentoo-3fb8eb49e91df177e5cda224ec7013263e908685.tar.gz
gentoo-3fb8eb49e91df177e5cda224ec7013263e908685.tar.bz2
gentoo-3fb8eb49e91df177e5cda224ec7013263e908685.zip
dev-python/test2ref: Bump to 1.2.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/test2ref/Manifest1
-rw-r--r--dev-python/test2ref/test2ref-1.2.1.ebuild37
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/test2ref/Manifest b/dev-python/test2ref/Manifest
index b9e26f4f5378..c10dd1fc3f8e 100644
--- a/dev-python/test2ref/Manifest
+++ b/dev-python/test2ref/Manifest
@@ -1 +1,2 @@
DIST test2ref-1.1.1.tar.gz 9654 BLAKE2B aa8890e79e7cfa0f54c47e3d72d7f7a489acb056cdce1bdd6bb4271899e3001ddfb36b53705269132ed6731b406373529cd83e5d18d419d75ce241149658cd4a SHA512 fe93ea5b1c9cb136f5fbbcf0a550fd598c8d4a548c0c94750c5fb279decae67998149cadbd6058637b117dd861dc51bc207a06d81bc0dcf3f3b566f999796478
+DIST test2ref-1.2.1.tar.gz 10078 BLAKE2B 62b9d62f4bb0b69aaf463f9369bea2da10dc119665edb867267a082a28a5ec84338d9873fed3f2068a8783e126fcac96755e8c3e5db385257a9d27668efa0262 SHA512 2d10f7aa696ec8ec1898e93cbd27ce3c33889695e4eb6aa8c8ee5e7756bf926828bad80f93385a69e147844640d4135c4add0ec6b956672224a63047fe118dfc
diff --git a/dev-python/test2ref/test2ref-1.2.1.ebuild b/dev-python/test2ref/test2ref-1.2.1.ebuild
new file mode 100644
index 000000000000..9ac24e6719ca
--- /dev/null
+++ b/dev-python/test2ref/test2ref-1.2.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2025-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=pdm-backend
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Testing Against Learned Reference Data"
+HOMEPAGE="
+ https://github.com/nbiotcloud/test2ref
+ https://pypi.org/project/test2ref/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ dev-python/binaryornot[${PYTHON_USEDEP}]
+"
+
+EPYTEST_DESELECT=(
+ # Whitespace differences
+ 'tests/test_main.py::test_caplog[False]'
+ 'tests/test_main.py::test_caplog[True]'
+)
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_test() {
+ # addopts= to avoid pytest-cov
+ epytest -o addopts=
+}