Skip to content
Snippets Groups Projects
Commit 0978181e authored by tpylak's avatar tpylak
Browse files

LMS-1546 HCS distribution: minor improvement

SVN: 16756
parent 29b8ed32
No related branches found
No related tags found
No related merge requests found
...@@ -90,6 +90,20 @@ ...@@ -90,6 +90,20 @@
</antcall> </antcall>
</target> </target>
<target name="screening-integration-tests"
description="Runs integration tests for screening openBIS, fetches distribution from Cruise Control.">
<exec executable="sh" dir="${basedir}" resultproperty="result-code">
<arg value="./test-screening.sh" />
</exec>
<fail>
<condition>
<not>
<equals arg1="${result-code}" arg2="0" />
</not>
</condition>
</fail>
</target>
<!-- <!--
// Cleans 'install' and 'playground' directories. // Cleans 'install' and 'playground' directories.
--> -->
......
...@@ -5,4 +5,4 @@ ...@@ -5,4 +5,4 @@
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
imaging.database.kind = integration_tests imaging.database.kind = integration_tests
database.kind = integration_tests database.kind = screening_integration_tests
\ No newline at end of file \ No newline at end of file
...@@ -93,6 +93,7 @@ function install_screening_api { ...@@ -93,6 +93,7 @@ function install_screening_api {
function install_screening { function install_screening {
fetch_distributions fetch_distributions
rm -fr $WORK
mkdir -p $WORK mkdir -p $WORK
install_dss_screening install_dss_screening
install_and_run_openbis_server_screening "true" install_and_run_openbis_server_screening "true"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment