From d620143f02cf007a90a08757d066bb853597d841 Mon Sep 17 00:00:00 2001 From: Akshen Date: Tue, 30 May 2017 15:57:36 +0530 Subject: Modifies travis.yml and requirements.txt - adds makemigrations and migrate commands in travis.yml - removes pyparsing from requirements.txt --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 0218610..5d52997 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,4 +15,6 @@ install: # command to run tests and coverage script: + - python manage.py makemigrations + - python manage.py migrate - python manage.py test -- cgit