blob: e987f16042bfa5ffb0e5b53f65edc229c2ba921e [file] [log] [blame]
Sonsino, Ofir (os0695)4a4dcc52018-08-12 14:51:28 +03001<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
2
3<suite verbose="1" name="VID API Tests" annotations="JDK">
4
5 <listeners>
6 <listener class-name="vid.automation.test.infra.FeatureTogglingTestngTransformer" />
7 </listeners>
8
9 <test name="test">
10 <groups>
11 <run>
12 <!-- These tests require the settings in asdc.properties to be like
13 asdc.client.type=LOCAL so cannot run on pipeline-->
14 <exclude name="worksOnlyWithLocalASDC"/>
15
16 <!-- these tests call to MaintenanceController which is restricted to
17 localhost, so it can not run on jenkins pipeline -->
18 <exclude name="worksOnlyWithLocalhostVID"/>
19
20 <!-- tests and features that are still under development but are pushed to develop -->
21 <exclude name="underDevelopment"/>
22
23 </run>
24 </groups>
25 <packages>
26 <package name="org.opencomp.vid.*"/>
27 </packages>
28 </test>
29</suite>