From aa85bcee59f7c223564f3bb1b6c3e95fc1056a61 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Sun, 6 Mar 2016 11:40:42 -0500 Subject: [PATCH] Update invoke version; run lint command for app's travis builds --- .travis.yml | 2 +- {{cookiecutter.app_name}}/.travis.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6679242..61457bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,6 @@ python: - 3.5 install: - pip install cookiecutter - - pip install invoke==0.9.0 + - pip install invoke==0.12.2 script: - invoke test diff --git a/{{cookiecutter.app_name}}/.travis.yml b/{{cookiecutter.app_name}}/.travis.yml index dece91f..c91b1d9 100644 --- a/{{cookiecutter.app_name}}/.travis.yml +++ b/{{cookiecutter.app_name}}/.travis.yml @@ -5,5 +5,7 @@ python: - 2.7 - 3.3 - 3.4 + - 3.5 install: pip install -r requirements/dev.txt -script: py.test tests +before_script: python manage.py lint +script: python manage.py test