Skip to content
run-tests-for-ci.sh 1.95 KiB
Newer Older
Andreas Klöckner's avatar
Andreas Klöckner committed
#! /bin/bash

Andreas Klöckner's avatar
Andreas Klöckner committed
echo "-----------------------------------------------"
echo "Current directory: $(pwd)"
echo "Python executable: ${PY_EXE}"
echo "-----------------------------------------------"

# {{{ clean up

rm -Rf .env
rm -Rf build
find . -name '*.pyc' -delete

# }}}

git submodule update --init --recursive

# {{{ virtualenv

VENV_VERSION="virtualenv-15.1.0"
Andreas Klöckner's avatar
Andreas Klöckner committed
rm -Rf "$VENV_VERSION"
curl -k https://pypi.python.org/packages/d4/0c/9840c08189e030873387a73b90ada981885010dd9aea134d6de30cd24cb8/$VENV_VERSION.tar.gz | tar xfz -
Andreas Klöckner's avatar
Andreas Klöckner committed

VIRTUALENV="${PY_EXE} -m venv"
${VIRTUALENV} -h > /dev/null || VIRTUALENV="$VENV_VERSION/virtualenv.py --no-setuptools -p ${PY_EXE}"

if [ -d ".env" ]; then
  echo "**> virtualenv exists"
else
  echo "**> creating virtualenv"
  ${VIRTUALENV} .env
fi

. .env/bin/activate

# }}}

# {{{ setuptools

#curl -k https://bitbucket.org/pypa/setuptools/raw/bootstrap-py24/ez_setup.py | python -
#curl -k https://ssl.tiker.net/software/ez_setup.py | python -
curl -k https://bootstrap.pypa.io/ez_setup.py | python -
Andreas Klöckner's avatar
Andreas Klöckner committed

# }}}

curl -k https://bootstrap.pypa.io/get-pip.py | python -
Andreas Klöckner's avatar
Andreas Klöckner committed

# Not sure why pip ends up there, but in Py3.3, it sometimes does.
export PATH=`pwd`/.env/local/bin:$PATH

PIP="${PY_EXE} $(which pip)"

if [[ "$PY_EXE" = python2* ]]; then
  grep -Ev "django>|django=" requirements.txt > req.txt
Dong Zhuang's avatar
Dong Zhuang committed
  $PIP install "django<2"
Dong Zhuang's avatar
Dong Zhuang committed
  $PIP install mock
  cp requirements.txt req.txt
cp local_settings_example.py local_settings.py
Andreas Klöckner's avatar
Andreas Klöckner committed

# Make sure i18n literals marked correctly
${PY_EXE} manage.py makemessages --no-location --ignore=req.txt > output.txt

if [[ -n $(grep "msgid" output.txt) ]]; then
    echo "Command 'python manage.py makemessages' failed with the following info:"
    echo ""
    grep --color -E '^|warning: ' output.txt
    exit 1;
fi
Dong Zhuang's avatar
Dong Zhuang committed
if [[ "$PY_EXE" = python3* ]]; then
    ${PY_EXE} manage.py compilemessages
fi

$PIP install codecov factory_boy
coverage run manage.py test tests/
coverage report -m
codecov