dev-python/treq: enable py3.10, enable tests

Signed-off-by: Arthur Zamarin <arthurzam@gmail.com>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Arthur Zamarin
2021-08-09 11:07:18 +03:00
committed by Michał Górny
parent c7039b2c06
commit f28fe386fc

View File

@@ -2,8 +2,8 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
DISTUTILS_USE_SETUPTOOLS="bdepend"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
@@ -47,17 +47,7 @@ python_install_all() {
distutils-r1_python_install_all
}
test_instructions() {
ewarn "The 'test' USE flag and FEATURE only ensures that the correct"
ewarn "dependenciess are installed for this package."
ewarn "Please run eg:"
ewarn "$ python3.7 /usr/bin/trial treq"
ewarn "as a user for each of the python versions it is installed to"
ewarn "to correctly test this package."
}
python_test() {
# Tests fail when run via emerge
# they need proper network access
test_instructions
distutils_install_for_testing
"${EPYTHON}" trial treq || die "Tests failed with ${EPYTHON}"
}