From 353d0497ff958f89a6e3b4de18d828f2dbc76007 Mon Sep 17 00:00:00 2001 From: Modulos Date: Mon, 10 Apr 2017 09:35:22 +0200 Subject: [PATCH 1/2] Add travis-ci integration --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..fc2903c8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: python +python: + - "3.5" + - "3.6" +# install dependencies +install: "pip install -r requirements.txt" +script: python manage.py test From 74f134cccc79860391da88a46c557a929a51d8ab Mon Sep 17 00:00:00 2001 From: Modulos Date: Mon, 10 Apr 2017 09:48:09 +0200 Subject: [PATCH 2/2] Add default DJANGO_SECRET_KEY --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index fc2903c8..1e92e42e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,10 @@ language: python python: - "3.5" - "3.6" + +env: + # Set a dummy secret key + - DJANGO_SECRET_KEY=0 # install dependencies install: "pip install -r requirements.txt" script: python manage.py test