Merge "Logging improvements"
[vid.git] / vid-automation / TestNg.xml
1 <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
2
3 <suite verbose="1" name="VID UI Tests" annotations="JDK">
4     <listeners>
5         <listener class-name="vid.automation.test.infra.FeatureTogglingTestngTransformer"/>
6     </listeners>
7     <test name="test">
8         <groups>
9             <run>
10                 <!-- These tests are legacy tests that should be converted from
11                 working against IST to working against vid's 3rd party simulator-->
12                 <exclude name="shouldBeMigratedToWorkWithSimulator"/>
13
14                 <!-- These tests require the settings in asdc.properties to be like
15                 asdc.client.type=LOCAL so cannot run on pipeline-->
16                 <exclude name="worksOnlyWithLocalASDC"/>
17
18                 <!-- these tests call to MaintenanceController which is restricted to
19                 localhost, so it can not run on jenkins pipeline -->
20                 <exclude name="worksOnlyWithLocalhostVID"/>
21
22                 <!-- angular2 is not supported in CI yet. These tests can run only on
23                 developers environment -->
24                 <exclude name="Angular2Tests"/>
25
26                 <!-- tests and features that are still under development but are pushed to develop -->
27                 <exclude name="underDevelopment"/>
28
29             </run>
30         </groups>
31         <packages>
32             <package name="vid.automation.test.test.*"/>
33         </packages>
34     </test>
35 </suite>