dev-python/aspectlib: disable failing test

Closes: https://bugs.gentoo.org/784011
Signed-off-by: Anna Vyalkova <cyber@sysrq.in>
This commit is contained in:
Anna Vyalkova
2021-05-04 01:31:32 +05:00
parent ab42dbc2c8
commit c5f334f70b

View File

@@ -5,7 +5,7 @@ EAPI=7
PYTHON_COMPAT=( python3_{7,8,9} )
DISTUTILS_USE_SETUPTOOLS=rdepend
DISTUTILS_USE_SETUPTOOLS=bdepend
inherit distutils-r1
@@ -29,7 +29,6 @@ DEPEND="
dev-python/mock[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/process-tests[${PYTHON_USEDEP}]
www-servers/tornado[${PYTHON_USEDEP}]
)
"
@@ -37,3 +36,9 @@ S="${WORKDIR}/python-${P}"
distutils_enable_tests pytest
distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme
python_test() {
# Test fails with tornado>=6
# https://github.com/ionelmc/python-aspectlib/issues/15
epytest --deselect tests/test_integrations_py3.py::test_decorate_tornado_coroutine
}