From 1804d66b8597974754d8562d1793a18b6cb8eef5 Mon Sep 17 00:00:00 2001 From: ekmartin Date: Sat, 7 Nov 2015 20:51:50 +0100 Subject: [PATCH] Ignore testproject for flake8 --- channels/tests/test_backends.py | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/channels/tests/test_backends.py b/channels/tests/test_backends.py index 90089fd..f4bc461 100644 --- a/channels/tests/test_backends.py +++ b/channels/tests/test_backends.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.test import TestCase diff --git a/tox.ini b/tox.ini index ab262df..cff47ce 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,7 @@ envlist = {py27,py35}-flake8 [flake8] -exclude = venv/*,tox/*,docs/* +exclude = venv/*,tox/*,docs/*,testproject/* ignore = E123,E128,E402,W503,E731,W601 max-line-length = 119