We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bc583c commit 3b7edd7Copy full SHA for 3b7edd7
2 files changed
tests/bin/destroy-all-vagrants.sh
@@ -8,3 +8,4 @@ VMS=$(vagrant global-status | grep deis | awk '{ print $5 }')
8
for dir in $VMS; do
9
cd $dir && vagrant destroy --force
10
done
11
+rm -rf $HOME/VirtualBox\ VMs/deis*
tests/bin/test-integration.sh
@@ -3,6 +3,7 @@
3
# Preps a test environment and runs `make test-integration` with single-node vagrant.
4
5
echo Testing ${DEIS_TEST_APP?}...
6
+THIS_DIR=$(cd $(dirname $0); pwd) # absolute path
7
# Environment reset and configuration
rm -rf ~/.deis ~/.fleetctl ~/.ssh/known_hosts
@@ -13,7 +14,7 @@ cd ${GOPATH?}/src/github.com/deis/deis
13
14
rm -rf tests/example-*
15
16
# Vagrant provisioning
-tests/bin/halt-all-vagrant.sh
17
+$THIS_DIR/halt-all-vagrants.sh
18
vagrant destroy --force
19
vagrant up --provider virtualbox --provision
20
0 commit comments