We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0e5ae2 commit a737e6eCopy full SHA for a737e6e
CHANGELOG.rst
@@ -1,6 +1,11 @@
1
Changelog
2
=========
3
4
+Version 0.3.1 (2012-03-19)
5
+--------------------------
6
+
7
+* Fixed bug in functional tests runner
8
9
Version 0.3 (2012-03-19)
10
------------------------
11
fabtools/tests/vagrant.py
@@ -30,11 +30,12 @@ def halt_and_destroy():
30
Halt and destoy virtual machine
31
"""
32
with lcd(os.path.dirname(__file__)):
33
- local('vagrant halt')
34
- if version() >= (0, 9, 99):
35
- local('vagrant destroy -f')
36
- else:
37
- local('vagrant destroy')
+ if os.path.exists('Vagrantfile'):
+ local('vagrant halt')
+ if version() >= (0, 9, 99):
+ local('vagrant destroy -f')
+ else:
38
+ local('vagrant destroy')
39
40
41
def base_boxes():
0 commit comments