Browse Source

Make one script for test+qa and one for qa alone

pull/6/head
Marcio Mazza 10 years ago
parent
commit
4132920b6d
  1. 1
      qa_check.sh
  2. 8
      test_and_qa_check.sh

1
qa_check.sh

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

8
test_and_qa_check.sh

@ -0,0 +1,8 @@
#!/bin/bash
# QA checks: run this before every commit
./manage.py check
py.test
flake8 --exclude='ipython_log.py*,migrations' .
isort --check-only -rc .
Loading…
Cancel
Save