From 41f46b4cb55b02a32ed6d49a84c23676f57ef30b Mon Sep 17 00:00:00 2001 From: Marcio Mazza Date: Wed, 29 Jul 2015 12:05:01 -0300 Subject: [PATCH] Ignore migrations and ipython_log in isort check --- qa_check.sh | 2 +- test_and_qa_check.sh | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/qa_check.sh b/qa_check.sh index 363454cc4..0015ab373 100755 --- a/qa_check.sh +++ b/qa_check.sh @@ -4,4 +4,4 @@ ./manage.py check flake8 --exclude='ipython_log.py*,migrations' . -isort --check-only -rc . +isort --check-only --skip='migrations' --skip='ipython_log.py' -rc . diff --git a/test_and_qa_check.sh b/test_and_qa_check.sh index 1678c7da7..c7a01989b 100755 --- a/test_and_qa_check.sh +++ b/test_and_qa_check.sh @@ -2,7 +2,5 @@ # QA checks: run this before every commit -./manage.py check py.test -flake8 --exclude='ipython_log.py*,migrations' . -isort --check-only -rc . +./qa_check.sh