Commit 9ce42542 authored by Stefan Behnel's avatar Stefan Behnel

include branch coverage

parent 6899588a
......@@ -807,10 +807,10 @@ if __name__ == '__main__':
if options.coverage or options.coverage_xml:
if not WITH_CYTHON:
options.coverage = False
options.coverage = options.coverage_xml = False
else:
from coverage import coverage as _coverage
coverage = _coverage()
coverage = _coverage(branch=True)
coverage.erase()
coverage.start()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment