From 468c96f37a824ee85cf5b30026dd38d18e94bd77 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 9 Sep 2014 16:49:46 +0200 Subject: [PATCH] First travis-ci configuration --- .travis.yml | 12 ++++++++++++ src/requirements.txt | 1 + 2 files changed, 13 insertions(+) create mode 100644 .travis.yml 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