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