Add Travis config.

This commit is contained in:
2013-10-13 20:55:32 +01:00
parent 63aa7ec1ab
commit 47595808bd

16
.travis.yml Normal file
View File

@@ -0,0 +1,16 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
env:
- DJANGO=1.3.7
- DJANGO=1.4.8
- DJANGO=1.5.4
install:
- pip install -q Django==$DJANGO mock --use-mirrors
- pip install pep8 --use-mirrors
before_script:
- "pep8 --exclude=migrations --ignore=E501,E225 src"
script:
- python setup.py test