Interface BuildTypesTestScope
-
- All Superinterfaces:
ServerExtension
,TeamCityExtension
- All Known Implementing Classes:
BuildTypesTestScopeViaProperties
public interface BuildTypesTestScope extends ServerExtension
This extension allows to provide information about group of build configurations which should be treated as a common group scope to calculate test statistics. For instance, a test failure in one configuration of the group may have a first failure in another configuration in the group. Can be used in parallel-test feature, for instance. If there are multiple extensions present, their output is combined.- Since:
- 2022.10
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<SBuildType>
getRelevantBuildTypes(SBuild build)
Return a collection of additional build configurations which should be treated equally with regard to test failures for a given build.
-
-
-
Method Detail
-
getRelevantBuildTypes
@NotNull Collection<SBuildType> getRelevantBuildTypes(@NotNull SBuild build)
Return a collection of additional build configurations which should be treated equally with regard to test failures for a given build.- Parameters:
build
-- Returns:
- see above
- See Also:
TestHistory.getRelevantBuildTypes(SBuild)
-
-