Merge pull request #626 from seemethere/increment_050

Increment to 0.5.0
This commit is contained in:
Eli Uriegas 2017-04-11 16:05:26 -05:00 committed by GitHub
commit e5fdc7fdd0
3 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,6 @@
aiofiles aiofiles
aiohttp==1.3.5 aiohttp==1.3.5
chardet<=2.3.0
beautifulsoup4 beautifulsoup4
coverage coverage
httptools httptools

View File

@ -1,6 +1,6 @@
from sanic.app import Sanic from sanic.app import Sanic
from sanic.blueprints import Blueprint from sanic.blueprints import Blueprint
__version__ = '0.4.1' __version__ = '0.5.0'
__all__ = ['Sanic', 'Blueprint'] __all__ = ['Sanic', 'Blueprint']

View File

@ -1,3 +1,5 @@
import traceback
from sanic.log import log from sanic.log import log
HOST = '127.0.0.1' HOST = '127.0.0.1'
@ -50,6 +52,8 @@ class SanicTestClient:
**request_kwargs) **request_kwargs)
results[-1] = response results[-1] = response
except Exception as e: except Exception as e:
log.error(
'Exception:\n{}'.format(traceback.format_exc()))
exceptions.append(e) exceptions.append(e)
self.app.stop() self.app.stop()