Added view permission to all data models. Added fixtures autoload.
[e_cidadania.git] / src / .travis.yml
blobcffb6216dabbd5f783c0f66b541f53fe18f208b8
1 language: python
2 python:
3   - "2.7"
4 env:
5   - DJANGO=1.3.7
6   - DJANGO=1.4.5
7   - DJANGO=1.5.1
8 # command to install dependencies
9 install:
10   - pip install -q Django==$DJANGO --use-mirrors
11 #  - pip install pep8 --use-mirrors
12   - pip install -r requirements.txt --use-mirrors
13 before_script:
14   - "pep8 --exclude=migrations --ignore=E501,E225 src"
15 # command to run tests
16 script: python manage.py test