From f1fb4577cc270a4d82736edbae6cfc8019045fd3 Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Fri, 1 Apr 2016 15:42:47 +0300 Subject: [PATCH] Exclude migrations. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 36d69bc..7d2e5fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ install: - pip install -e . - pip install -r requirements/tests.txt Django==$DJANGO before_script: -- flake8 dbtemplates --ignore=E501 +- flake8 dbtemplates --ignore=E501 --exclude=migrations script: - coverage run --branch --source=dbtemplates `which django-admin.py` test dbtemplates - coverage report --omit="dbtemplates/test*,dbtemplates/migrations*"