From 921cc70e55e47ef519c5f572fb1650c2344d43f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Bouttier?= Date: Mon, 1 Sep 2014 21:03:51 -0700 Subject: [PATCH] travis: ignore migrations for coverage --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0ba7ea2..be5abb4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ install: - if [[ $DJANGO == '1.6' ]]; then pip install coveralls; fi script: - - if [[ $DJANGO == '1.6' ]]; then coverage run --branch --source=accounts,permissions,tracker --omit=*/migrations/*.py manage.py test; fi + - if [[ $DJANGO == '1.6' ]]; then coverage run --branch --source=accounts,permissions,tracker --omit=accounts/migrations/*.py,permissions/migrations/*.py,tracker/migrations/*.py manage.py test; fi - if [[ $DJANGO != '1.6' ]]; then python manage.py test; fi after_success: