You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The time provided by TestSuite.time was 23406 seconds, which is the accumeltated time of all the tests.
It seems the logic in TestSuite.update_statistics does not take into account such cases, so I suggest the following logic change:
If time tag already exists on the element, skip the sum logic, and use the tag value as value for time.
The text was updated successfully, but these errors were encountered:
In my company, we run tests in parallel.
Pytest exports the test suite with a (correct) time tag:
Indeed, tests took about an hour.
The time provided by
TestSuite.time
was23406
seconds, which is the accumeltated time of all the tests.It seems the logic in
TestSuite.update_statistics
does not take into account such cases, so I suggest the following logic change:If time tag already exists on the element, skip the sum logic, and use the tag value as value for
time
.The text was updated successfully, but these errors were encountered: