Add --diff to isort

This commit is contained in:
Tom Christie 2016-06-09 14:01:55 +01:00
parent 99adbf19d3
commit 80c595edba

View File

@ -14,7 +14,7 @@ PYTEST_ARGS = {
FLAKE8_ARGS = ['rest_framework', 'tests', '--ignore=E501']
ISORT_ARGS = ['--recursive', '--check-only', '-p', 'tests', 'rest_framework', 'tests']
ISORT_ARGS = ['--recursive', '--diff', '-p', 'tests', 'rest_framework', 'tests']
sys.path.append(os.path.dirname(__file__))