Skip to content

Commit f465a76

Browse files
committed
upgraded to python 3.6
1 parent b79d9f7 commit f465a76

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ script:
1414
- python manage.py cov
1515

1616
after_success:
17-
coveralls
17+
- coveralls

manage.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,7 @@ def cov():
5050
COV.save()
5151
print('Coverage Summary:')
5252
COV.report()
53-
basedir = os.path.abspath(os.path.dirname(__file__))
54-
covdir = os.path.join(basedir, 'coverage')
55-
COV.html_report(directory=covdir)
56-
print('HTML version: file://%s/index.html' % covdir)
53+
COV.html_report()
5754
COV.erase()
5855
return 0
5956
return 1

0 commit comments

Comments
 (0)