django-rosetta/runtests.sh
2013-04-16 11:17:15 +01:00

16 lines
300 B
Bash
Executable file

#!/bin/bash
if [ ! -d venv_13 ]
then
virtualenv --no-site-packages --distribute --python=python2 venv_13
. venv_13/bin/activate
pip install Django==1.3 coverage python-memcached six
deactivate
fi
. venv_13/bin/activate
cd testproject
python manage.py test rosetta
cd ..
deactivate