diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-04-11 17:35:21 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-04-11 17:35:48 +0200 |
commit | 6adfcf7397f570e3fe2ad3dd7df4686def70540a (patch) | |
tree | b89f74d9786803031245c4b3fc3443b76257610a /www-servers | |
parent | p/f/prefix/standalone/kernel-2.6.32+/profile.bashrc: remove O_PATH (diff) | |
download | gentoo-6adfcf7397f570e3fe2ad3dd7df4686def70540a.tar.gz gentoo-6adfcf7397f570e3fe2ad3dd7df4686def70540a.tar.bz2 gentoo-6adfcf7397f570e3fe2ad3dd7df4686def70540a.zip |
www-servers/tornado: Increase timeout for async tests
Bug: https://bugs.gentoo.org/663490
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/tornado/tornado-5.1-r1.ebuild | 4 | ||||
-rw-r--r-- | www-servers/tornado/tornado-6.0.3-r1.ebuild | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild b/www-servers/tornado/tornado-5.1-r1.ebuild index 740e1d0ee98b..8ad9e01ae78d 100644 --- a/www-servers/tornado/tornado-5.1-r1.ebuild +++ b/www-servers/tornado/tornado-5.1-r1.ebuild @@ -40,7 +40,9 @@ distutils_enable_sphinx docs \ #) python_test() { - "${PYTHON}" -m tornado.test.runtests || die "tests failed under ${EPYTHON}" + local -x ASYNC_TEST_TIMEOUT=60 + "${PYTHON}" -m tornado.test.runtests --verbose || + die "tests failed under ${EPYTHON}" } python_install_all() { diff --git a/www-servers/tornado/tornado-6.0.3-r1.ebuild b/www-servers/tornado/tornado-6.0.3-r1.ebuild index da2aa090acce..971f3a1c5572 100644 --- a/www-servers/tornado/tornado-6.0.3-r1.ebuild +++ b/www-servers/tornado/tornado-6.0.3-r1.ebuild @@ -41,7 +41,9 @@ distutils_enable_sphinx docs \ #) python_test() { - "${PYTHON}" -m tornado.test.runtests || die "tests failed under ${EPYTHON}" + local -x ASYNC_TEST_TIMEOUT=60 + "${PYTHON}" -m tornado.test.runtests --verbose || + die "tests failed under ${EPYTHON}" } python_install_all() { |