Commit ab544dfa authored by Stefan Behnel's avatar Stefan Behnel

Enable branch coverage analysis in test runner.

parent e62a7219
......@@ -2097,7 +2097,7 @@ def main():
elif options.shard_num == -1:
print("Enabling coverage analysis")
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