diff options
Diffstat (limited to 'integration-tests/src/test/resources/ci/testSuites')
3 files changed, 19 insertions, 1 deletions
diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/helmValidatorTests.xml b/integration-tests/src/test/resources/ci/testSuites/backend/helmValidatorTests.xml index e69785d397..01d4095153 100644 --- a/integration-tests/src/test/resources/ci/testSuites/backend/helmValidatorTests.xml +++ b/integration-tests/src/test/resources/ci/testSuites/backend/helmValidatorTests.xml @@ -5,6 +5,12 @@ <parameter name="makeToscaValidation" value="true"/> <test name="HelmValidatorTests"> <classes> + <class name="org.onap.sdc.backend.ci.tests.sanity.Onboard"> + <methods> + <include name="onboardCNFWithHelmValidatorTest"/> + <include name="onboardCNFWithHelmValidatorShouldFailTest"/> + </methods> + </class> </classes> </test> </suite> diff --git a/integration-tests/src/test/resources/ci/testSuites/backend/onapApiSanity.xml b/integration-tests/src/test/resources/ci/testSuites/backend/onapApiSanity.xml index 97537986cb..8ce016d09f 100644 --- a/integration-tests/src/test/resources/ci/testSuites/backend/onapApiSanity.xml +++ b/integration-tests/src/test/resources/ci/testSuites/backend/onapApiSanity.xml @@ -5,7 +5,12 @@ <parameter name="makeToscaValidation" value="true"/> <test name="ExternalApis"> <classes> - <class name="org.onap.sdc.backend.ci.tests.sanity.Onboard"/> + <class name="org.onap.sdc.backend.ci.tests.sanity.Onboard"> + <methods> + <exclude name="onboardCNFWithHelmValidatorTest"/> + <exclude name="onboardCNFWithHelmValidatorShouldFailTest"/> + </methods> + </class> </classes> </test> </suite> diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/helmValidatorTests.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/helmValidatorTests.xml index ac44641767..2e171e970f 100644 --- a/integration-tests/src/test/resources/ci/testSuites/frontend/helmValidatorTests.xml +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/helmValidatorTests.xml @@ -6,6 +6,13 @@ <test name="helmValidatorTests"> <classes> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.OnboardingFlowsUi"> + <methods> + <include name="onapOnboardVSPWithHelmValidationSuccessfulWithoutErrorsAndWarnings"/> + <include name="onapOnboardVSPWithHelmValidationSuccessfulWithWarnings"/> + <include name="onapOnboardVSPWithHelmValidationUnsuccessfulWithErrors"/> + </methods> + </class> </classes> </test> </suite> |