Added newrelic agent to the wsgi file
[e_cidadania.git] / .travis.yml
blob0f3fcf99c46f3a8f5535b740170aa05871782c1a
1 language: python
2 python:
3   - "2.7"
4 env:
5   - DJANGO=1.5.1
6 # command to install dependencies
7 install:
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
12 before_script:
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