Skip to content

Commit

Permalink
EPMRPP-82209 || filter skipped tests in HealthCheckTableView widget (#…
Browse files Browse the repository at this point in the history
…1911)

* EPMRPP-82209 exclude skipped tests from HealthCheckTableView
  • Loading branch information
grabsefx authored Jan 15, 2024
1 parent 01a1014 commit f5424fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ dependencies {
implementation 'com.epam.reportportal:plugin-api'
} else {
implementation 'com.github.reportportal:commons-events:e337f8b7be'
implementation 'com.github.reportportal:commons-dao:e453860'
implementation 'com.github.reportportal:commons-dao:cf4f3465d'
implementation 'com.github.reportportal:commons-rules:837ccf2'
implementation 'com.github.reportportal:commons-model:3251388'
implementation 'com.github.reportportal:commons:07566b8e'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public class HealthCheckTableReadyContentLoader implements MaterializedWidgetCon

public static final String SORT = "sort";
public static final String CUSTOM_COLUMN = "customColumn";
public static final String EXCLUDE_SKIPPED = "excludeSkipped";

public static final String TOTAL = "total";
public static final String STATISTICS = "statistics";
Expand Down Expand Up @@ -112,7 +113,8 @@ private HealthCheckTableGetParams getParams(WidgetOptions widgetOptions,
currentLevelKey,
resolveSort(widgetOptions),
includeCustomColumn,
getLevelEntries(attributeKeys, attributeValues)
getLevelEntries(attributeKeys, attributeValues),
WidgetOptionUtil.getBooleanByKey(EXCLUDE_SKIPPED, widgetOptions)
);

}
Expand Down

0 comments on commit f5424fc

Please sign in to comment.