diff options
author | 2020-03-25 08:10:53 +0100 | |
---|---|---|
committer | 2020-03-25 10:39:47 +0100 | |
commit | 2a7569cf9bce403b06dddb3265151e583456a574 (patch) | |
tree | 163cbaa3fb7ed15c7e4b618010364274440f5b54 /dev-python/urllib3/urllib3-1.24.2.ebuild | |
parent | dev-python/pyzmq: Remove py2 (diff) | |
download | gentoo-2a7569cf9bce403b06dddb3265151e583456a574.tar.gz gentoo-2a7569cf9bce403b06dddb3265151e583456a574.tar.bz2 gentoo-2a7569cf9bce403b06dddb3265151e583456a574.zip |
dev-python/urllib3: Disable tests for py2 to unblock tornado
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/urllib3/urllib3-1.24.2.ebuild')
-rw-r--r-- | dev-python/urllib3/urllib3-1.24.2.ebuild | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/dev-python/urllib3/urllib3-1.24.2.ebuild b/dev-python/urllib3/urllib3-1.24.2.ebuild index 744dfd74e26..7be6c90f2f8 100644 --- a/dev-python/urllib3/urllib3-1.24.2.ebuild +++ b/dev-python/urllib3/urllib3-1.24.2.ebuild @@ -32,10 +32,12 @@ RDEPEND=" DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] test? ( - ${RDEPEND} - dev-python/mock[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - >=www-servers/tornado-4.2.1[$(python_gen_usedep python{2_7,3_{5,6,7}})] + $(python_gen_cond_dep " + ${RDEPEND} + dev-python/mock[\${PYTHON_USEDEP}] + dev-python/pytest[\${PYTHON_USEDEP}] + >=www-servers/tornado-4.2.1[\${PYTHON_USEDEP}] + " 'python3*') ) " @@ -53,7 +55,12 @@ python_prepare_all() { python_test() { # FIXME: get tornado ported case ${EPYTHON} in - python2*|python3.[567]) + python2*) + ewarn "Tests are being skipped for Python 2 in order to reduce the number" + ewarn "of circular dependencies for Python 2 removal. Please test" + ewarn "manually in a virtualenv." + ;; + python3*) pytest -vv || die "Tests fail with ${EPYTHON}" ;; esac |