File tree Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Original file line number Diff line number Diff line change 1- from ._metrics import Framework , Metrics , SubModule
2- from ._report import Report , ReportingHelpers
1+ from ._metrics import Metrics , SubModule
2+ from ._report import ReportingHelpers
33from dataclasses import dataclass
44from typing import List
55from ._graphs_presenter import GraphPresenter
66
77
88@dataclass
99class GraphsRender :
10- """
11- Component responsible to generate the needed graphs for the given report.
12- """
10+ "Component responsible to generate the needed graphs for the given report."
1311 artifacts_path : str
1412 test_frameworks : List ['Framework' ]
1513 non_test_frameworks : List ['Framework' ]
Original file line number Diff line number Diff line change 11import re
22import logging
33import json
4- from typing import List , Dict
4+ from typing import Dict
55from functional import seq
66
77
Original file line number Diff line number Diff line change @@ -390,13 +390,11 @@ def test_next_only_module(self):
390390
391391 def test_next_closed_circle (self ):
392392 self .submodule .submodules .append (self .additional_module )
393- """
394- *
395- / \
396- H AM
397- \
398- AS
399- """
393+ # *
394+ # / \
395+ # H AM
396+ # \
397+ # AS
400398 self .assertEqual (self .helper , self .submodule .next )
401399 self .assertEqual (self .additional_module , self .helper .next )
402400 self .assertEqual (self .additional_submodule , self .additional_module .next )
You can’t perform that action at this time.
0 commit comments