Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 0 |
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 |