From 96a371705b810bd036817ac33c1aed8c045644d1 Mon Sep 17 00:00:00 2001 From: Jason Carver Date: Tue, 30 Jan 2018 15:17:50 -0800 Subject: [PATCH] bugfix: run tox -elint *after* isort otherwise tox fails, and the auto-lint never runs --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a7f8c6..97eab7c 100644 --- a/Makefile +++ b/Makefile @@ -24,8 +24,9 @@ clean-pyc: lint: tox -elint -lint-roll: lint +lint-roll: isort --recursive tests + $(make) lint test: py.test tests