diff options
author | Artur Signell <artur@vaadin.com> | 2013-02-26 11:07:42 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-03-01 15:54:57 +0200 |
commit | e6d506494c8ead64e72db63d951be9a79f6bb482 (patch) | |
tree | 87ca3e4c85948040580256363559d5039457512c /build.xml | |
parent | c965ff2475f4047ae5efa2b2917089f8b97e95d9 (diff) | |
download | vaadin-framework-e6d506494c8ead64e72db63d951be9a79f6bb482.tar.gz vaadin-framework-e6d506494c8ead64e72db63d951be9a79f6bb482.zip |
Renamed "tests" target to "test" and added "test-all" (#9998)
The "test" target runs all tests which do not require additional servers or setup. Can be run immediately after cloning the project.
The "test-all" target runs also integration tests and UI tests which require access to servers or additional setup.
Change-Id: I2f5371dc5be805ba12766c8187a2b58fbc7f7db4
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -40,7 +40,10 @@ <target name="checkstyle" depends="buildorder"> <subant buildpathref="build-path" target="checkstyle"/> </target> - <target name="tests" depends="buildorder"> + <target name="test" depends="buildorder"> + <subant buildpathref="build-path" target="test" /> + </target> + <target name="test-all" depends="buildorder"> <property name="war.file" location="result/artifacts/${vaadin.version}/vaadin-uitest/vaadin-uitest-${vaadin.version}.war" /> <parallel> <sequential> @@ -50,7 +53,7 @@ <property name="demo.war" value="${war.file}" /> </ant> </sequential> - <subant buildpathref="build-path" target="tests" /> + <subant buildpathref="build-path" target="test" /> <ant antfile="uitest/test.xml" target="test-package"> <property name="war.file" location="${war.file}" /> </ant> |