From 10de3393d6aaee7fc514282bee068f01c4b8b0ef Mon Sep 17 00:00:00 2001 From: Isaac Bythewood Date: Tue, 6 Feb 2018 00:32:46 +0000 Subject: [PATCH] Update travis config --- .travis.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1919e44..bf0a9ed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,16 @@ +sudo: false +dist: trusty language: python - +cache: + pip: true python: - - "2.7" - + - "3.4" + - "3.5" + - "3.6" install: - - pip install -r requirements.txt - + - pip install pipenv && pipenv install --dev --system script: - - python manage.py test + - python manage.py test +notifications: + email: false +