summaryrefslogtreecommitdiffstats
path: root/testsuite/prepare-python.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/prepare-python.sh')
-rwxr-xr-xtestsuite/prepare-python.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/prepare-python.sh b/testsuite/prepare-python.sh
new file mode 100755
index 000000000..7b72a6dc4
--- /dev/null
+++ b/testsuite/prepare-python.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+if [ -n "$PYTHON" ]; then
+ echo "Try to use custom python version: $PYTHON"
+ pip install 'virtualenv<1.8'
+ mkdir -p "$HOME/custom-virtualenv"
+ virtualenv -p "python$PYTHON" --use-distribute "$HOME/custom-virtualenv"
+fi