Skip to content
Snippets Groups Projects
tests.xml 359 B
Newer Older
  • Learn to ignore specific revisions
  • <!DOCTYPE suite SYSTEM "http://beust.com/testng/testng-1.0.dtd" >
    
    <suite name="All" verbose="1">
        <test name="All">
            <groups>
                <run>
                    <exclude name="broken" />
                </run>
            </groups>
            <packages>
                <package name="ch.ethz.sis.openbis.systemtests.*" />
            </packages>
        </test>
    </suite>