Set parallel false at suite level in testng configuration file
Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/e9bef7da Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/e9bef7da Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/e9bef7da Branch: refs/heads/stratos-4.1.x Commit: e9bef7da5fcd7cf8cde2335904b3b5188bf05f6c Parents: 9700dec Author: Akila Perera <[email protected]> Authored: Mon Nov 30 00:29:47 2015 +0530 Committer: Akila Perera <[email protected]> Committed: Mon Nov 30 00:33:48 2015 +0530 ---------------------------------------------------------------------- .../test-integration/src/test/resources/test-suite-all.xml | 4 ++-- .../test-integration/src/test/resources/test-suite-smoke.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/e9bef7da/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-all.xml ---------------------------------------------------------------------- diff --git a/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-all.xml b/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-all.xml index be687f2..5a73f7c 100644 --- a/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-all.xml +++ b/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-all.xml @@ -20,7 +20,7 @@ <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" > -<suite name="StratosIntegrationSuite"> +<suite name="StratosIntegrationSuite" parallel="false"> <listeners> <listener class-name="org.wso2.carbon.automation.engine.testlisteners.TestExecutionListener"/> <listener class-name="org.wso2.carbon.automation.engine.testlisteners.TestSuiteListener"/> @@ -41,4 +41,4 @@ <package name="org.apache.stratos.integration.tests.*"/> </packages> </test> -</suite> \ No newline at end of file +</suite> http://git-wip-us.apache.org/repos/asf/stratos/blob/e9bef7da/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-smoke.xml ---------------------------------------------------------------------- diff --git a/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-smoke.xml b/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-smoke.xml index 0f388d7..0e2fbf0 100644 --- a/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-smoke.xml +++ b/products/stratos/modules/integration/test-integration/src/test/resources/test-suite-smoke.xml @@ -20,7 +20,7 @@ <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" > -<suite name="StratosIntegrationSuite"> +<suite name="StratosIntegrationSuite" parallel="false"> <listeners> <listener class-name="org.wso2.carbon.automation.engine.testlisteners.TestExecutionListener"/> <listener class-name="org.wso2.carbon.automation.engine.testlisteners.TestSuiteListener"/>
