fastest.file_handler.coverage_path   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A get_report_path() 0 8 1
1
import os
2
3
4
def get_report_path(project_path):
5
    """
6
    Returns the path to coverage report
7
8
    :param project_path: str
9
    :return: str
10
    """
11
    return os.path.abspath(os.path.join(project_path, 'htmlcov/index.html'))
12