We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28e2a36 commit 52130e1Copy full SHA for 52130e1
robotframework_reportportal/time_visitor.py
@@ -12,6 +12,8 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+"""This module provides a visitor for the robot framework results to correct the start and end times of the nodes."""
16
+
17
import logging
18
19
from robot.api import ResultVisitor
@@ -21,11 +23,12 @@
21
23
22
24
25
class TimeVisitor(ResultVisitor):
26
+ """Visitor for the robot framework results to correct the start and end times of the nodes."""
27
28
@staticmethod
29
def _correct_starts(o, node_class):
30
"""
- starttime wants to be the oldest start time of its children.
31
+ Starttime wants to be the oldest start time of its children.
32
only correcting null starttime.
33
34
if o.starttime:
0 commit comments