summaryrefslogtreecommitdiff
path: root/community/python-tornado/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/python-tornado/PKGBUILD')
-rw-r--r--community/python-tornado/PKGBUILD16
1 files changed, 8 insertions, 8 deletions
diff --git a/community/python-tornado/PKGBUILD b/community/python-tornado/PKGBUILD
index e77d5a08d..a6c54b21b 100644
--- a/community/python-tornado/PKGBUILD
+++ b/community/python-tornado/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 110749 2014-05-06 04:31:01Z fyan $
+# $Id: PKGBUILD 112584 2014-06-04 04:53:44Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: Thomas Dziedzic < gostrc at gmail >
pkgname=('python-tornado' 'python2-tornado')
-pkgver=3.2.1
+pkgver=3.2.2
pkgrel=1
pkgdesc='open source version of the scalable, non-blocking web server and tools'
arch=('i686' 'x86_64')
@@ -31,14 +31,14 @@ build() {
check() {
cd tornado
- python -m tornado.test.runtests || :
- python -m tornado.test.runtests --ioloop=tornado.platform.asyncio.AsyncIOLoop || :
- python -m tornado.test.runtests --ioloop=tornado.platform.select.SelectIOLoop || :
+ python -m tornado.test.runtests || warning "Tests failed"
+ python -m tornado.test.runtests --ioloop=tornado.platform.asyncio.AsyncIOLoop || warning "Tests with AsyncIO failed"
+ python -m tornado.test.runtests --ioloop=tornado.platform.select.SelectIOLoop || warning "Tests with SelectIO failed"
cd ../tornado-py2
- python2 -m tornado.test.runtests || :
- python2 -m tornado.test.runtests --ioloop=tornado.platform.twisted.TwistedIOLoop || :
- python2 -m tornado.test.runtests --ioloop=tornado.platform.select.SelectIOLoop || :
+ python2 -m tornado.test.runtests || warning "Tests failed"
+ python2 -m tornado.test.runtests --ioloop=tornado.platform.twisted.TwistedIOLoop || warning "Tests with TwistedIO failed"
+ python2 -m tornado.test.runtests --ioloop=tornado.platform.select.SelectIOLoop || warning "Tests with SelectIO failed"
}
package_python-tornado() {