Browse Source

Ignore migrations and ipython_log in isort check

pull/6/head
Marcio Mazza 10 years ago
parent
commit
41f46b4cb5
  1. 2
      qa_check.sh
  2. 4
      test_and_qa_check.sh

2
qa_check.sh

@ -4,4 +4,4 @@
./manage.py check ./manage.py check
flake8 --exclude='ipython_log.py*,migrations' . flake8 --exclude='ipython_log.py*,migrations' .
isort --check-only -rc . isort --check-only --skip='migrations' --skip='ipython_log.py' -rc .

4
test_and_qa_check.sh

@ -2,7 +2,5 @@
# QA checks: run this before every commit # QA checks: run this before every commit
./manage.py check
py.test py.test
flake8 --exclude='ipython_log.py*,migrations' . ./qa_check.sh
isort --check-only -rc .

Loading…
Cancel
Save