summaryrefslogtreecommitdiffstats
path: root/testsuite/install.sh
blob: 42f8b9243dcaf0a87f34e989f8ed66a86ea09bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash -ex

# install script for Travis-CI

sudo apt-get update -qq
sudo apt-get install swig libxml2-utils

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 PyYAML pyinotify boto pylibacl 'django<1.5' Jinja2
    easy_install https://fedorahosted.org/released/python-augeas/python-augeas-0.4.1.tar.gz
    if [[ ${PYVER:0:1} == "2" ]]; then
        # django supports py3k, but South doesn't, and the django bits
        # in bcfg2 require South
        sudo apt-get install -y yum libaugeas0 augeas-lenses libacl1-dev \
            libssl-dev
        pip install cheetah 'South<0.8'
        pip install m2crypto
    fi
fi