From 7cb17d9d09e81ed5245d35d44c300f3b350024a8 Mon Sep 17 00:00:00 2001 From: benzkji Date: Mon, 6 Nov 2017 16:28:21 +0100 Subject: [PATCH] travis --- .travis.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e4ccc60 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: python + +python: + - "2.7" + - "3.4" + - "3.5" + +env: + matrix: + - DJANGO=1.7.8 DB=sqlite + - DJANGO=1.8.18 DB=sqlite + - DJANGO=1.9.5 DB=sqlite + - DJANGO=1.10.5 DB=sqlite + - DJANGO=1.11.3 DB=sqlite + +# command to install dependencies +install: + - pip install . + - pip install -q Django==$DJANGO + - pip install -r test_requirements.txt + +# command to run tests +script: python manage.py test \ No newline at end of file