REPO-2774: further split on test suite AppContextExtra02 because of the max_connection limit on bamboo

This commit is contained in:
Andrei Rebegea
2017-08-07 15:18:07 +03:00
parent 2d05837fe3
commit 4a74ae93b6
6 changed files with 64 additions and 16 deletions

View File

@@ -33,14 +33,15 @@ public class AppContextExtra02TestSuite extends TestSuite
public static Test suite()
{
TestSuite suite = new TestSuite();
//any other order may lead to failing tests
// any other order may lead to failing tests
AllRepositoryTestsCatalogue.virtualizationTestContext_applicationContext(suite);
AllRepositoryTestsCatalogue.applicationContext_testSubscriptionsContext_52(suite);
AllRepositoryTestsCatalogue.applicationContext_openCmisContext_07(suite);
AllRepositoryTestsCatalogue.applicationContext_cacheTestContext(suite);
AllRepositoryTestsCatalogue.applicationContext_mtAllContext_56(suite);
AllRepositoryTestsCatalogue.applicationContext_testSubscriptionsContext(suite);
AllRepositoryTestsCatalogue.applicationContext_openCmisContext(suite);
// TODO Uncomment the following 2 lines after REPO-2790 is implemented
// AllRepositoryTestsCatalogue.applicationContext_cacheTestContext(suite);
// AllRepositoryTestsCatalogue.applicationContext_mtAllContext(suite);
return suite;
}
}