Skip to content
Permalink
8dabdf8eb5
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
24 lines (19 sloc) 473 Bytes
#!/usr/bin/env python3
from coverage import coverage
cov = coverage(branch=True, omit=['virtualenv/*', 'tests/*'])
cov.start()
import unittest
import os
from tests.website import WebsiteTest
from tests.utils import UtilsTest
if __name__ == '__main__':
try:
unittest.main(failfast=True)
except:
pass
cov.stop()
cov.save()
print("\n\nCoverage Report:\n")
cov.report()
cov.html_report(directory='tmp/coverage')
cov.erase()