diff options
author | Louis Sautier <sbraz@gentoo.org> | 2021-07-16 00:45:18 +0200 |
---|---|---|
committer | Louis Sautier <sbraz@gentoo.org> | 2021-07-16 00:45:26 +0200 |
commit | 6a09f687a01243e663bb0637e04c5f1d0b227fb1 (patch) | |
tree | af156369ea1cfa299925839e49b6f95f588e7c98 /dev-python/geventhttpclient | |
parent | dev-python/nagiosplugin: enable py3.10 (diff) | |
download | gentoo-6a09f687a01243e663bb0637e04c5f1d0b227fb1.tar.gz gentoo-6a09f687a01243e663bb0637e04c5f1d0b227fb1.tar.bz2 gentoo-6a09f687a01243e663bb0637e04c5f1d0b227fb1.zip |
dev-python/geventhttpclient: enable py3.10, use epytest
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'dev-python/geventhttpclient')
-rw-r--r-- | dev-python/geventhttpclient/geventhttpclient-1.4.5.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-python/geventhttpclient/geventhttpclient-1.4.5.ebuild b/dev-python/geventhttpclient/geventhttpclient-1.4.5.ebuild index 64318b31be0c..35efc6717e72 100644 --- a/dev-python/geventhttpclient/geventhttpclient-1.4.5.ebuild +++ b/dev-python/geventhttpclient/geventhttpclient-1.4.5.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{7..10} ) inherit distutils-r1 @@ -44,6 +44,6 @@ python_test() { # Append to sys.path to avoid ImportError # https://bugs.gentoo.org/667758 # Skip tests which require internet access - pytest --import-mode=append -vv ${skipped_tests[@]/#/--deselect } \ - -m "not online" || die "Tests failed with ${EPYTHON}" + epytest --import-mode=append -vv ${skipped_tests[@]/#/--deselect } \ + -m "not online" } |