- Timestamp:
- Jan 31, 2020 11:32:55 AM (5 years ago)
- Location:
- trunk/src/VBox/ValidationKit/testmanager
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/batch/virtual_test_sheriff.py
r81116 r82940 499 499 if oFailure is not None and oFailure.idFailureReason in aidFailureReasons: 500 500 break; 501 else: 502 oFailure = None; 501 oFailure = None; 503 502 if oFailure is not None: 504 503 cBad += 1; -
trunk/src/VBox/ValidationKit/testmanager/webui/wuihlpgraphgooglechart.py
r82648 r82940 66 66 67 67 def renderGraph(self): 68 aoTable = self._oData.aoTable ;# type: WuiHlpGraphDataTable68 aoTable = self._oData.aoTable # type: WuiHlpGraphDataTable 69 69 70 70 # Seems material (google.charts.Bar) cannot change the direction on the Y-axis, -
trunk/src/VBox/ValidationKit/testmanager/webui/wuireport.py
r82649 r82940 665 665 WuiReportFailuresWithTotalBase.__init__(self, oModel, dParams, fSubReport = fSubReport, 666 666 aiSortColumns = aiSortColumns, fnDPrint = fnDPrint, oDisp = oDisp); 667 self.oTestCaseCrit = TestResultFilter().aCriteria[TestResultFilter.kiTestCases] ;# type: FilterCriterion667 self.oTestCaseCrit = TestResultFilter().aCriteria[TestResultFilter.kiTestCases] # type: FilterCriterion 668 668 669 669 @staticmethod
Note:
See TracChangeset
for help on using the changeset viewer.