From ffeb78c2cb3d2bf394c63f5121184bdd7911317d Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Sun, 1 Mar 2015 22:29:22 +0100 Subject: [PATCH] Only lint mopidy and tests dir --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 7b5692e3..977a4b9e 100644 --- a/tasks.py +++ b/tasks.py @@ -28,7 +28,7 @@ def test(path=None, coverage=False, watch=False, warn=False): def lint(watch=False, warn=False): if watch: return watcher(lint) - run('flake8', warn=warn) + run('flake8 mopidy tests', warn=warn) @task