First travis-ci configuration

This commit is contained in:
Raphael Michel
2014-09-09 16:49:46 +02:00
parent 2197c85a6d
commit 468c96f37a
2 changed files with 13 additions and 0 deletions

12
.travis.yml Normal file
View File

@@ -0,0 +1,12 @@
language: python
python:
- "3.2"
- "3.4"
install:
- pip install -q src/requirements.txt
before_script:
- cd src
- "pep8 --ignore=E501,E128 --exclude=migrations ."
- pyflakes .
script:
- python manage.py test

View File

@@ -1,2 +1,3 @@
Django>=1.7 Django>=1.7
pyflakes pyflakes
pep8