Browse Source

Allow skipping TB2/TB3 tests using tests.tb2/tb3.skip

Change-Id: If9f16657731fa5ea06e61bf9702abe385e4fc7a1
tags/7.1.8
Artur Signell 10 years ago
parent
commit
6a99730d89
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      uitest/tb3test.xml
  2. 1
    1
      uitest/test.xml

+ 1
- 1
uitest/tb3test.xml View File

@@ -10,7 +10,7 @@
<path location="${tb3test.dir}/result/classes" />
</path>

<target name="run-all-tb3-tests" description="Run all the TB3 tests (except server tests) in the project">
<target name="run-all-tb3-tests" unless="tests.tb3.skip" description="Run all the TB3 tests (except server tests) in the project">
<antcall target="run-tb3-suite">
<param name="junit.test.suite" value="com.vaadin.tests.tb3.AllTB3Tests" />
</antcall>

+ 1
- 1
uitest/test.xml View File

@@ -83,7 +83,7 @@
<fail unless="com.vaadin.testbench.deployment.url" message="The 'com.vaadin.testbench.deployment.url' property must be defined." />
</target>

<target name="run-tb2-tests" depends="check-parameters,compile-tests">
<target name="run-tb2-tests" depends="check-parameters,compile-tests" unless="tests.tb2.skip">
<fileset dir="${test-output-dir}" id="tests-fileset">
<include name="**/**.java" />
</fileset>

Loading…
Cancel
Save