mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
645 B
Python
33 lines
645 B
Python
5 years ago
|
"""Erase code coverage files."""
|
||
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
|
|
||
|
import os
|
||
|
|
||
|
from ..util_common import (
|
||
|
ResultType,
|
||
|
)
|
||
|
|
||
|
from . import (
|
||
|
initialize_coverage,
|
||
|
CoverageConfig,
|
||
|
)
|
||
|
|
||
|
|
||
|
def command_coverage_erase(args):
|
||
|
"""
|
||
|
:type args: CoverageConfig
|
||
|
"""
|
||
|
initialize_coverage(args)
|
||
|
|
||
|
coverage_dir = ResultType.COVERAGE.path
|
||
|
|
||
|
for name in os.listdir(coverage_dir):
|
||
|
if not name.startswith('coverage') and '=coverage.' not in name:
|
||
|
continue
|
||
|
|
||
|
path = os.path.join(coverage_dir, name)
|
||
|
|
||
|
if not args.explain:
|
||
|
os.remove(path)
|