diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..0ed2355fa --- /dev/null +++ b/.travis.yml @@ -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 diff --git a/src/requirements.txt b/src/requirements.txt index 3240b18ca..9d221a8ef 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -1,2 +1,3 @@ Django>=1.7 pyflakes +pep8