summaryrefslogtreecommitdiffstats
path: root/testsuite/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/install.sh')
-rwxr-xr-xtestsuite/install.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuite/install.sh b/testsuite/install.sh
index 1ca89f40f..6895034d5 100755
--- a/testsuite/install.sh
+++ b/testsuite/install.sh
@@ -6,8 +6,12 @@ pip install -r testsuite/requirements.txt --use-mirrors
PYVER=$(python -c 'import sys;print(".".join(str(v) for v in sys.version_info[0:2]))')
+if [[ ${PYVER:0:1} == "2" && $PYVER != "2.7" ]]; then
+ pip install --use-mirrors unittest2
+fi
+
if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
- pip install --use-mirrors genshi PyYAML pyinotify
+ pip install --use-mirrors PyYAML pyinotify
if [[ $PYVER == "2.5" ]]; then
# markdown 2.2+ doesn't work on py2.5
pip install --use-mirrors simplejson 'markdown<2.2'