Fixed permissions in debate views. Fixed CSS styles in debate view template. Added...
[e_cidadania.git] / .travis.yml
blob7ad4d470126bcd166719e3075b3b189a870bc845
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 django-nose --use-mirrors
13   - pip install -r src/requirements.txt --use-mirrors
14 before_script:
15   - "pep8 --exclude=migrations --ignore=E501,E128,E127,E125 --exclude=thirdparty src"
16   - "python bootstrap.py"
17   - "python bin/buildout"
18 # command to run tests
19 script: cd src && ../bin/django test