Restrict isort to rest_framework and tests directories

This commit is contained in:
Tom Christie 2015-07-02 10:18:08 +01:00
parent d979dc6522
commit a03b89f326

View File

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