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/e44144b5 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/e44144b5 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/e44144b5 Branch: refs/heads/release-4.1.5 Commit: e44144b59139c32038eeedc1c556ef72f5a9c78a Parents: f6c828a Author: Akila Perera <[email protected]> Authored: Mon Nov 30 00:29:47 2015 +0530 Committer: gayangunarathne <[email protected]> Committed: Mon Dec 7 10:16:26 2015 +0000 ---------------------------------------------------------------------- .../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/e44144b5/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/e44144b5/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"/>
