test(it): disable 5 redundant UI integration tests - #6704
Closed
NicoleNG18 wants to merge 4 commits into
Closed
Conversation
…s CI cap The push-to-master integration-tests-h2 leg crept from ~130m (early August) to ~146-150m and now intermittently hits its 150m timeout - not a hang or a failing test, just suite growth. Disable the heaviest ITs whose coverage is redundant so the suite runtime drops back under the cap. Each @disabled carries a reason naming the sibling that still covers the ground: - DependsOnScenariosHarmoniaIT - depends-on cascade covered by DependsOnHarmoniaIT - DeclineLeaveRequestBpmIT - same workflow as ApproveLeaveRequestBpmIT (opposite branch); engine BPMN via JavaBpmnIT/BpmnModelApiIT - BpmnEditorLoadsIT - editor-open smoke subsumed by BpmnEditorIT/BpmnEditorPropertyPopupIT - MonitoringPerspectiveIT - legacy AngularJS perspective; shipped surface is MonitoringShellIT - DatabasePerspectiveIT - legacy AngularJS perspective; shipped surface is DatabaseShellIT These are fully disabled (skipped in every run, including nightly), not merely deferred; re-enable by removing the @disabled once the suite has headroom or the redundancy changes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…s CI cap The push-to-master integration-tests-h2 leg crept from ~130m (early August) to ~146-150m and now intermittently hits its 150m timeout - not a hang or a failing test, just suite growth. Disable the heaviest ITs whose coverage is redundant so the suite runtime drops back under the cap. Each @disabled carries a reason naming the sibling that still covers the ground: - DependsOnScenariosHarmoniaIT - depends-on cascade covered by DependsOnHarmoniaIT - DeclineLeaveRequestBpmIT - same workflow as ApproveLeaveRequestBpmIT (opposite branch); engine BPMN via JavaBpmnIT/BpmnModelApiIT - BpmnEditorLoadsIT - editor-open smoke subsumed by BpmnEditorIT/BpmnEditorPropertyPopupIT - MonitoringPerspectiveIT - legacy AngularJS perspective; shipped surface is MonitoringShellIT - DatabasePerspectiveIT - legacy AngularJS perspective; shipped surface is DatabaseShellIT These are fully disabled (skipped in every run, including nightly), not merely deferred; re-enable by removing the @disabled once the suite has headroom or the redundancy changes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…/NicoleNG18/dirigible into test/disable-heavy-redundant-its # Conflicts: # tests/tests-integrations/src/main/java/org/eclipse/dirigible/integration/tests/ui/tests/BpmnEditorLoadsIT.java # tests/tests-integrations/src/main/java/org/eclipse/dirigible/integration/tests/ui/tests/DatabasePerspectiveIT.java # tests/tests-integrations/src/main/java/org/eclipse/dirigible/integration/tests/ui/tests/DeclineLeaveRequestBpmIT.java # tests/tests-integrations/src/main/java/org/eclipse/dirigible/integration/tests/ui/tests/DependsOnScenariosHarmoniaIT.java # tests/tests-integrations/src/main/java/org/eclipse/dirigible/integration/tests/ui/tests/MonitoringPerspectiveIT.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Disables 5 UI integration tests whose coverage is already provided by a sibling test, trimming duplicate work from the integration-test suite.
DependsOnScenariosHarmoniaITDependsOnHarmoniaITDeclineLeaveRequestBpmITApproveLeaveRequestBpmIT(opposite branch); engine BPMN viaJavaBpmnIT/BpmnModelApiITBpmnEditorLoadsITBpmnEditorIT+BpmnEditorPropertyPopupITMonitoringPerspectiveITMonitoringShellITDatabasePerspectiveITDatabaseShellITEach carries a short
@Disabled("...")reason naming the covering sibling. Test-only change; no production code touched.Context
The integration-test suite's runtime had crept up until the H2 leg intermittently hit its 150m cap. That timeout is now addressed structurally by #6702 (sharding the IT jobs into api/ui/samples slices), so this PR is complementary cleanup — it removes genuinely redundant coverage rather than fixing the timeout itself.
These are fully disabled (skipped in every run, including nightly), not deferred; re-enable by removing the
@Disabledif the redundancy changes.🤖 Generated with Claude Code