Merge pull request #3 from channelcat/master
merge upstream master branch
This commit is contained in:
commit
e4669e2581
3
requirements-docs.txt
Normal file
3
requirements-docs.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
sphinx
|
||||||
|
sphinx_rtd_theme
|
||||||
|
recommonmark
|
@ -33,7 +33,9 @@ class Sanic:
|
|||||||
logging.config.dictConfig(log_config)
|
logging.config.dictConfig(log_config)
|
||||||
# Only set up a default log handler if the
|
# Only set up a default log handler if the
|
||||||
# end-user application didn't set anything up.
|
# end-user application didn't set anything up.
|
||||||
if not logging.root.handlers and log.level == logging.NOTSET:
|
if not (logging.root.handlers and
|
||||||
|
log.level == logging.NOTSET and
|
||||||
|
log_config):
|
||||||
formatter = logging.Formatter(
|
formatter = logging.Formatter(
|
||||||
"%(asctime)s: %(levelname)s: %(message)s")
|
"%(asctime)s: %(levelname)s: %(message)s")
|
||||||
handler = logging.StreamHandler()
|
handler = logging.StreamHandler()
|
||||||
|
@ -11,7 +11,7 @@ import pytest
|
|||||||
def gunicorn_worker():
|
def gunicorn_worker():
|
||||||
command = 'gunicorn --bind 127.0.0.1:1337 --worker-class sanic.worker.GunicornWorker examples.simple_server:app'
|
command = 'gunicorn --bind 127.0.0.1:1337 --worker-class sanic.worker.GunicornWorker examples.simple_server:app'
|
||||||
worker = subprocess.Popen(shlex.split(command))
|
worker = subprocess.Popen(shlex.split(command))
|
||||||
time.sleep(1)
|
time.sleep(3)
|
||||||
yield
|
yield
|
||||||
worker.kill()
|
worker.kill()
|
||||||
|
|
||||||
|
6
tox.ini
6
tox.ini
@ -9,16 +9,14 @@ setenv =
|
|||||||
deps =
|
deps =
|
||||||
coverage
|
coverage
|
||||||
pytest
|
pytest
|
||||||
|
pytest-cov
|
||||||
pytest-sugar
|
pytest-sugar
|
||||||
aiohttp==1.3.5
|
aiohttp==1.3.5
|
||||||
chardet<=2.3.0
|
chardet<=2.3.0
|
||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
gunicorn
|
gunicorn
|
||||||
commands =
|
commands =
|
||||||
pytest tests {posargs}
|
pytest tests --cov sanic --cov-report term-missing {posargs}
|
||||||
coverage erase
|
|
||||||
coverage run -m sanic.app
|
|
||||||
coverage report
|
|
||||||
|
|
||||||
[testenv:flake8]
|
[testenv:flake8]
|
||||||
deps =
|
deps =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user