summaryrefslogtreecommitdiff
path: root/test/integration/targets/groupby_filter
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2019-02-15 11:15:22 -0800
committerMatt Clay <matt@mystile.com>2019-02-15 11:24:07 -0800
commit6ac22416af987b4cd3e4cadf0f1d01352daf203c (patch)
tree926f1260362fcfde6614c6faa832c1863d328af8 /test/integration/targets/groupby_filter
parent523cb8b5a49cadba17816101b0e259a9c03ed671 (diff)
downloadansible-6ac22416af987b4cd3e4cadf0f1d01352daf203c.tar.gz
Fix tests to use ANSIBLE_TEST_PYTHON_INTERPRETER.
Diffstat (limited to 'test/integration/targets/groupby_filter')
-rwxr-xr-xtest/integration/targets/groupby_filter/runme.sh7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/integration/targets/groupby_filter/runme.sh b/test/integration/targets/groupby_filter/runme.sh
index 8f9fce9b56..f65cc008f6 100755
--- a/test/integration/targets/groupby_filter/runme.sh
+++ b/test/integration/targets/groupby_filter/runme.sh
@@ -7,12 +7,7 @@ MYTMPDIR=$(mktemp -d 2>/dev/null || mktemp -d -t 'mytmpdir')
trap 'rm -rf "${MYTMPDIR}"' EXIT
-# This is needed for the ubuntu1604py3 tests
-# Ubuntu patches virtualenv to make the default python2
-# but for the python3 tests we need virtualenv to use python3
-PYTHON=$("python${ANSIBLE_TEST_PYTHON_VERSION:-}" -c "import sys; print(sys.executable)")
-
-virtualenv --system-site-packages --python "${PYTHON}" "${MYTMPDIR}/jinja2"
+virtualenv --system-site-packages --python "${ANSIBLE_TEST_PYTHON_INTERPRETER}" "${MYTMPDIR}/jinja2"
source "${MYTMPDIR}/jinja2/bin/activate"