commit:     402c1607ca916a7b7ca5a00ce775f3304d344034
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May 23 13:10:36 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May 23 13:41:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=402c1607

dev-python/snapshottest: Enable py3.9 & py3.10

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/snapshottest/snapshottest-0.5.1.ebuild | 20 ++++++++------------
 1 file changed, 8 insertions(+), 12 deletions(-)

diff --git a/dev-python/snapshottest/snapshottest-0.5.1.ebuild 
b/dev-python/snapshottest/snapshottest-0.5.1.ebuild
index aec16c0b697..c49cc1e8330 100644
--- a/dev-python/snapshottest/snapshottest-0.5.1.ebuild
+++ b/dev-python/snapshottest/snapshottest-0.5.1.ebuild
@@ -1,10 +1,9 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..8} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
+PYTHON_COMPAT=( python3_{7..10} )
 inherit distutils-r1
 
 # no tests on pypi, no tags on github
@@ -13,24 +12,21 @@ COMMIT_HASH="4ac2b4fb09e9e7728bebb11967c164a914775d1d"
 DESCRIPTION="Snapshot Testing utils for Python"
 HOMEPAGE="https://pypi.org/project/snapshottest/
        https://github.com/syrusakbary/snapshottest";
-SRC_URI="https://github.com/syrusakbary/${PN}/archive/${COMMIT_HASH}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="
+       https://github.com/syrusakbary/${PN}/archive/${COMMIT_HASH}.tar.gz
+               -> ${P}.tar.gz"
 S="${WORKDIR}/${PN}-${COMMIT_HASH}"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
        dev-python/six[${PYTHON_USEDEP}]
        dev-python/termcolor[${PYTHON_USEDEP}]
 "
-BDEPEND="${RDEPEND}
-       test? (
-               dev-python/pytest[${PYTHON_USEDEP}]
-       )
-"
+
+distutils_enable_tests pytest
 
 PATCHES=(
        "${FILESDIR}/snapshottest-0.5.1-remove-fastdiff.patch"
@@ -44,6 +40,6 @@ python_prepare_all() {
 
 python_test() {
        distutils_install_for_testing
-       pytest -vv tests examples/pytest || die "Tests failed with ${EPYTHON}"
+       epytest tests examples/pytest
        "${EPYTHON}" examples/unittest/test_demo.py || die "Tests failed with 
${EPYTHON}"
 }

Reply via email to