Merge pull request #178 from VishrutMehta/master
[e_cidadania.git] / .travis.yml
blob62625de76fd89073465cf5153191b7ebde0a8775
1 language: python
2 python:
3   - "2.6"
4   - "2.7"
5 env:
6   - DJANGO=1.2.7
7   - DJANGO=1.3.7
8   - DJANGO=1.4.5
9 # command to install dependencies
10 install:
11   - pip install -q Django==$DJANGO --use-mirrors
12   - pip install pep8 --use-mirrors
13   - pip install -r src/requirements.txt --use-mirrors
14 before_script:
15   - "pep8 --exclude=migrations --ignore=E501,E225 src"
16 # command to run tests
17 script: python src/manage.py test