diff options
author | Akshen | 2017-05-30 15:57:36 +0530 |
---|---|---|
committer | Akshen | 2017-05-30 15:57:42 +0530 |
commit | d620143f02cf007a90a08757d066bb853597d841 (patch) | |
tree | 0163ffe0bd4fde1be970f340071d9872e2900dbd /.travis.yml | |
parent | 781f0199543bc987df9dd9ce8e58134e3385507e (diff) | |
download | workshop_booking-d620143f02cf007a90a08757d066bb853597d841.tar.gz workshop_booking-d620143f02cf007a90a08757d066bb853597d841.tar.bz2 workshop_booking-d620143f02cf007a90a08757d066bb853597d841.zip |
Modifies travis.yml and requirements.txt
- adds makemigrations and migrate commands in travis.yml
- removes pyparsing from requirements.txt
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
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 |