upgraded to python 3.6

main
Michael Herman 2017-02-05 12:45:58 -07:00
parent c67b032897
commit b79d9f7096
2 changed files with 1 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,8 +1,6 @@
.env
env
venv
temp
tmp
__pycache__
*.pyc

View File

@ -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()