Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<class name="org.wso2.identity.integration.test.scim.SCIMServiceProviderUserTestCase"/>
<class name="org.wso2.identity.integration.test.scim.SCIMServiceProviderGroupTestCase"/>
<class name="org.wso2.identity.integration.test.application.mgt.ImportExportServiceProviderTest"/>
<class name="org.wso2.identity.integration.test.application.mgt.ApplicationTemplateMgtTestCase"/>
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description is currently the placeholder $subject, which doesn’t explain the motivation/impact of moving these test classes between TestNG blocks (e.g., ordering/config assumptions, CI runtime impact). Please update the PR description to briefly state why the move is needed and what suite(s) these tests should belong to.

Copilot uses AI. Check for mistakes.
<!--<class name="org.wso2.identity.integration.test.application.mgt.DefaultAuthSeqManagementTestCase"/>-->
<class name="org.wso2.identity.integration.test.user.account.connector.UserAccountConnectorTestCase"/>
<class name="org.wso2.identity.integration.test.AuthenticationAdminTestCase"/>
Expand Down Expand Up @@ -254,6 +255,7 @@
<class name="org.wso2.identity.integration.test.rest.api.server.application.management.v1.ApplicationManagementSuccessTest"/>
<class name="org.wso2.identity.integration.test.rest.api.server.application.management.v1.ApplicationManagementFailureTest"/>
<class name="org.wso2.identity.integration.test.rest.api.server.application.management.v1.ApplicationImportExportTest"/>
<class name="org.wso2.identity.integration.test.rest.api.server.application.management.v1.ApplicationPatchTest"/>
<class name="org.wso2.identity.integration.test.rest.api.server.application.management.v1.ApplicationManagementSAMLSuccessTest"/>
<class name="org.wso2.identity.integration.test.rest.api.server.application.management.v1.ApplicationManagementOAuthSuccessTest"/>
<class name="org.wso2.identity.integration.test.rest.api.server.application.management.v1.ApplicationManagementOAuthFailureTest"/>
Expand Down Expand Up @@ -556,8 +558,6 @@
<test name="is-tests-saas-app-creation" preserve-order="true" parallel="false" group-by-instances="true">
<classes>
<class name="org.wso2.identity.integration.test.application.mgt.SaasAppCreationInitializerTestCase"/>
<class name="org.wso2.identity.integration.test.application.mgt.ApplicationTemplateMgtTestCase"/>
<class name="org.wso2.identity.integration.test.rest.api.server.application.management.v1.ApplicationPatchTest"/>
</classes>
Comment on lines 558 to 561
Copy link

Copilot AI Apr 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is-tests-saas-app-creation now contains only SaasAppCreationInitializerTestCase. Since that class enables a config, restarts the server, and restores the config in @AfterTest, this block becomes an expensive no-op (extra restart + potential flakiness) with no tests benefiting from the enabled setting. Consider removing this <test> block entirely, or keep at least one test class in this block that actually requires enable_app_creation=true.

Copilot uses AI. Check for mistakes.
</test>
</suite>