Skip to content

Commit 0c6eb18

Browse files
committed
fixed composition of VIRTUALENV variable.
1 parent 6d9092e commit 0c6eb18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/vagrant.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ DIR=$(dirname "$0")
7474

7575
if [[ ! -z ${PYTHON_VERSION} ]] && [[ ! -z ${ANSIBLE_VERSION} ]]; then
7676
echo '[INFO] loading Python / Ansible virtualenv...'
77-
VIRTUALENV="${DIR}/../.tox/py${PYTHON_VERSION}-ansible${ANSIBLE_VERSION}/bin/activate"
77+
VIRTUALENV="${DIR}/../.tox/py${PYTHON_VERSION}-ansible${ANSIBLE_VERSION}"
7878
VIRTUALENV_NAME="py${PYTHON_VERSION}-ansible${ANSIBLE_VERSION}"
7979
fi
8080

@@ -98,5 +98,5 @@ do
9898
. test_idempotence.sh
9999

100100
echo "[INFO] destroying ${box}..."
101-
vagrant destroy -f $box
101+
#vagrant destroy -f $box
102102
done

0 commit comments

Comments
 (0)