6 # command to install dependencies
8 - pip install -q Django==$DJANGO --use-mirrors
9 - pip install pep8 --use-mirrors
10 - pip install django-nose --use-mirrors
11 - pip install -r src/requirements.txt --use-mirrors
13 - "pep8 --exclude=migrations --ignore=E501,E128,E127,E125 --exclude=thirdparty src"
14 - "python bootstrap.py"
15 - "python bin/buildout"
16 # command to run tests
17 script: cd src && ../bin/django test