54 the tests in reverse order |
54 the tests in reverse order |
55 @rtype tuple of |
55 @rtype tuple of |
56 (list of str, str, list of str, list of str, bool, bool) |
56 (list of str, str, list of str, list of str, bool, bool) |
57 """ |
57 """ |
58 labelsStr = self.labelsComboBox.currentText() |
58 labelsStr = self.labelsComboBox.currentText() |
|
59 self.__project.setMostRecentTestData("RecentTestLabels", labelsStr) |
59 if labelsStr: |
60 if labelsStr: |
60 self.__project.setMostRecentTestData("RecentTestLabels", labelsStr) |
|
61 labels = labelsStr.split() |
61 labels = labelsStr.split() |
62 else: |
62 else: |
63 labels = [] |
63 labels = [] |
64 |
64 |
65 tagsStr = self.labelsComboBox.currentText() |
65 tagsStr = self.tagsComboBox.currentText() |
|
66 self.__project.setMostRecentTestData("RecentTestTags", tagsStr) |
66 if tagsStr: |
67 if tagsStr: |
67 self.__project.setMostRecentTestData("RecentTestTags", tagsStr) |
|
68 tags = tagsStr.split() |
68 tags = tagsStr.split() |
69 else: |
69 else: |
70 tags = [] |
70 tags = [] |
71 |
71 |
72 excludeTagsStr = self.labelsComboBox.currentText() |
72 excludeTagsStr = self.excludeTagsComboBox.currentText() |
|
73 self.__project.setMostRecentTestData("RecentTestExcludeTags", |
|
74 excludeTagsStr) |
73 if excludeTagsStr: |
75 if excludeTagsStr: |
74 self.__project.setMostRecentTestData("RecentTestExcludeTags", |
|
75 excludeTagsStr) |
|
76 excludeTags = excludeTagsStr.split() |
76 excludeTags = excludeTagsStr.split() |
77 else: |
77 else: |
78 excludeTags = [] |
78 excludeTags = [] |
79 |
79 |
80 return ( |
80 return ( |