From 80c595edbaf4812bead5d091f4f2412f87e54bd7 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Thu, 9 Jun 2016 14:01:55 +0100 Subject: [PATCH] Add --diff to isort --- runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests.py b/runtests.py index 1627e33b2..31593c3b4 100755 --- a/runtests.py +++ b/runtests.py @@ -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__))