summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2017-08-17 17:11:04 +0200
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2017-08-17 23:03:42 +0200
commitbba671cf8df8dfadeec926acb7a3d15d07946dc7 (patch)
tree6e6ae5cd305d9036cf3d1bc5548cbbbd1a44124f
parent74f37ee90939e3deb811fe4e44c9aeda4180c87e (diff)
downloadbcfg2-bba671cf8df8dfadeec926acb7a3d15d07946dc7.tar.gz
bcfg2-bba671cf8df8dfadeec926acb7a3d15d07946dc7.tar.bz2
bcfg2-bba671cf8df8dfadeec926acb7a3d15d07946dc7.zip
testsuite: Use cheetah3 if possible
cheetah3 is a fork of cheetah for Python2.7 and Python3.
-rwxr-xr-xtestsuite/install.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/install.sh b/testsuite/install.sh
index 4ea811de0..d2fd20acb 100755
--- a/testsuite/install.sh
+++ b/testsuite/install.sh
@@ -25,13 +25,13 @@ else
cherrypy python-augeas nose-show-skipped
if [[ ${PYVER:0:1} == "2" ]]; then
- pip_wheel cheetah m2crypto guppy
+ pip_wheel m2crypto guppy
fi
if [[ $PYVER == "2.6" ]]; then
- pip_wheel 'django<1.7' 'South<0.8' 'mercurial<4.3'
+ pip_wheel 'django<1.7' 'South<0.8' 'mercurial<4.3' cheetah
else
- pip_wheel django mercurial
+ pip_wheel django mercurial cheetah3
fi
fi
fi