runtests: add --diff to ISORT_ARGS

This commit is contained in:
Daniel Hahler 2018-02-07 20:12:52 +01:00
parent 707b60e5d0
commit 423cbe1a6d

View File

@ -13,7 +13,7 @@ PYTEST_ARGS = {
FLAKE8_ARGS = ['rest_framework', 'tests']
ISORT_ARGS = ['--recursive', '--check-only', '-o' 'uritemplate', '-p', 'tests', 'rest_framework', 'tests']
ISORT_ARGS = ['--recursive', '--check-only', '--diff', '-o' 'uritemplate', '-p', 'tests', 'rest_framework', 'tests']
def exit_on_failure(ret, message=None):