From 460bdf64dbef1f6b0c7d1555b44cb76c3cd2834a Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Mon, 27 Aug 2018 12:31:54 +1000 Subject: [PATCH] Only lint the daphne and tests directories --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6a617c4..b91d2c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,8 +36,8 @@ jobs: - stage: lint install: pip install -U -e .[tests] black pyflakes isort script: - - pyflakes . - - black --check . + - pyflakes daphne tests + - black --check daphne tests - isort --check-only --diff --recursive channels_redis tests - stage: release