Do not remove logs on 'tox -e cleanup'

So far we call `tox -e cleanup` each time before running Fuel UI test.
We need that to clear database and start fresh Nailgun instance.
Unfortunately, tox's cleanup goal removes Nailgun logs and at the end of
tests we have only logs from last running test case.

In order avoid this inconvenient and provide full logs on CI, let's stop
removing those logs.

Change-Id: I43107a2de4bf0656e3cec3e924bf55c55f0beacb
This commit is contained in:
Igor Kalnitsky 2016-09-06 13:27:44 +03:00
parent dd2413fd38
commit 5929239f4f
No known key found for this signature in database
GPG Key ID: F05067E18910196E
1 changed files with 0 additions and 3 deletions

View File

@ -36,9 +36,6 @@ cleanup_server() {
}
cleanup_nailgun_env() {
rm -f "$NAILGUN_LOGS/nailgun.log"
rm -f "$NAILGUN_LOGS/app.log"
rm -f "$NAILGUN_LOGS/api.log"
rm -f "${NAILGUN_CONFIG}"
}