blob: 8ce016d09f31c3e477296303a6dd12f8398f76f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd" >
<suite name="externalApis" configfailurepolicy="continue" parallel="methods" thread-count="1" data-provider-thread-count="1">
<parameter name="makeDistribution" value="false"/>
<parameter name="makeToscaValidation" value="true"/>
<test name="ExternalApis">
<classes>
<class name="org.onap.sdc.backend.ci.tests.sanity.Onboard">
<methods>
<exclude name="onboardCNFWithHelmValidatorTest"/>
<exclude name="onboardCNFWithHelmValidatorShouldFailTest"/>
</methods>
</class>
</classes>
</test>
</suite>
|