Merge pull request #2184 from legal90/fix-integration-tests

test/integration: Remove machine forcibly, without stopping
This commit is contained in:
David Gageot 2015-11-05 18:29:56 +01:00
commit d07e4e259a
1 changed files with 1 additions and 2 deletions

View File

@ -15,8 +15,7 @@ function quiet_run () {
function cleanup_machines() { function cleanup_machines() {
if [[ $(machine ls -q | wc -l) -ne 0 ]]; then if [[ $(machine ls -q | wc -l) -ne 0 ]]; then
quiet_run machine stop $(machine ls -q) quiet_run machine rm -f $(machine ls -q)
quiet_run machine rm $(machine ls -q)
fi fi
} }