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