get_report_path()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 8
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 1
nop 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