File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
robotframework_reportportal Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
+ """This module provides a visitor for the robot framework results to correct the start and end times of the nodes."""
16
+
15
17
import logging
16
18
17
19
from robot .api import ResultVisitor
21
23
22
24
23
25
class TimeVisitor (ResultVisitor ):
26
+ """Visitor for the robot framework results to correct the start and end times of the nodes."""
24
27
25
28
@staticmethod
26
29
def _correct_starts (o , node_class ):
27
30
"""
28
- starttime wants to be the oldest start time of its children.
31
+ Starttime wants to be the oldest start time of its children.
29
32
only correcting null starttime.
30
33
"""
31
34
if o .starttime :
You can’t perform that action at this time.
0 commit comments