diff --git a/.gitignore b/.gitignore index 1a82f0f..3c277e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,6 @@ .env env venv -temp -tmp __pycache__ *.pyc diff --git a/manage.py b/manage.py index f9ab2d6..236e702 100644 --- a/manage.py +++ b/manage.py @@ -51,7 +51,7 @@ def cov(): print('Coverage Summary:') COV.report() basedir = os.path.abspath(os.path.dirname(__file__)) - covdir = os.path.join(basedir, 'tmp/coverage') + covdir = os.path.join(basedir, 'coverage') COV.html_report(directory=covdir) print('HTML version: file://%s/index.html' % covdir) COV.erase()