Don't move nailgun log for UI func tests manually

Since nailgun start is managed by tox, it's always empty.
Actual log is nailgun.log.

Change-Id: I17b76b701599ae6209e89c54e3d9156513074f77
Implements: blueprint separate-fuel-ui-repo
This commit is contained in:
Vitaly Kramskikh 2016-03-14 15:14:27 +03:00
parent 4afc3f60f7
commit a8a5497013
1 changed files with 0 additions and 4 deletions

View File

@ -111,8 +111,6 @@ function run_ui_func_tests {
tox -e cleanup
popd > /dev/null
local server_log=`mktemp /tmp/test_nailgun_ui_server.XXXX`
if [ $no_nailgun_start -ne 1 ]; then
pushd "$FUEL_WEB_ROOT" > /dev/null
tox -e start
@ -130,10 +128,8 @@ function run_ui_func_tests {
fi
if [ $result -ne 0 ]; then
mv $server_log $ARTIFACTS/app.log
break
fi
rm $server_log
done
return $result