From a73379495fe1f60db3caeb18d651dc7f1e306ad3 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Fri, 17 Feb 2017 07:06:57 -0600 Subject: [PATCH] Fix coverage build Moved `sanic.py` to `app.py` this change reflects that --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f14e2a1f..05276a43 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ deps = commands = pytest tests {posargs} coverage erase - coverage run -m sanic.sanic + coverage run -m sanic.app coverage report [testenv:flake8]