Enable extension tests in Appveyor

This commit is contained in:
Antonin Delpeuch 2018-01-03 19:32:22 +01:00
parent 2b987854ab
commit 0f03d77178
3 changed files with 4 additions and 0 deletions

View File

@ -20,3 +20,4 @@ test_script:
cd OpenRefine
refine server_test
refine extensions_test

View File

@ -206,6 +206,7 @@
</jacoco:report>
</target>
<!-- runs the tests for the extensions -->
<target name="extensions_test" depends="build">
<ant dir="extensions/" target="test" />
</target>

View File

@ -47,6 +47,7 @@ echo build ..................... Build OpenRefine
echo run ....................... Run OpenRefine
echo.
echo server_test ............... Run the server tests
echo extensions_test ........... Run the extensions tests
echo.
echo clean ..................... Clean compiled classes
@ -184,6 +185,7 @@ set ACTION=%1
if ""%ACTION%"" == ""build"" goto doAnt
if ""%ACTION%"" == ""server_test"" goto doAnt
if ""%ACTION%"" == ""extensions_test"" goto doAnt
if ""%ACTION%"" == ""clean"" goto doAnt
if ""%ACTION%"" == ""distclean"" goto doAnt
if ""%ACTION%"" == ""run"" goto doRun