From 423cbe1a6dedecefe0fe1a3900317bcca20de887 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Wed, 7 Feb 2018 20:12:52 +0100 Subject: [PATCH] runtests: add --diff to ISORT_ARGS --- runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests.py b/runtests.py index d0e22a967..83642502b 100755 --- a/runtests.py +++ b/runtests.py @@ -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):