Skip to content
Snippets Groups Projects
Commit 487f2b33 authored by tpylak's avatar tpylak
Browse files

include screening integration tests into integration tests suite

SVN: 16846
parent f02d9a04
No related branches found
No related tags found
No related merge requests found
......@@ -8,16 +8,21 @@ function print_result {
}
echo Testing Screening Workflow
./test-3v.sh $@
result_3v=$?
print_result $result_3v
./test-screening.sh $@
result_hcs=$?
print_result $result_hcs
echo Testing YeastX Workflow
./test-yeastx.sh $@
result_yeastx=$?
print_result $result_yeastx
if [ $result_3v -ne 0 -o $result_yeastx -ne 0 ]; then
echo Testing 3V Screening Workflow
./test-3v.sh $@
result_3v=$?
print_result $result_3v
if [ $result_3v -ne 0 -o $result_yeastx -ne 0 -o $result_hcs -ne 0 ]; then
exit 1;
fi
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