diff options
author | Ask Solem <ask@celeryproject.org> | 2016-10-11 12:48:50 -0700 |
---|---|---|
committer | Ask Solem <ask@celeryproject.org> | 2016-10-11 12:48:50 -0700 |
commit | 0cc7a517fa31493a2700e13ddbab36b82b0d7e45 (patch) | |
tree | f94b7b493022550d67cf6ef3c24f0dc5b33cfe14 | |
parent | 836512cadd23c96f23bbb5cd8f4a1bf83c36ab19 (diff) | |
download | kombu-0cc7a517fa31493a2700e13ddbab36b82b0d7e45.tar.gz |
Fixes flakes
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | requirements/pkgutils.txt | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -86,7 +86,7 @@ configcheck: (cd "$(SPHINX_DIR)"; $(MAKE) configcheck) flakecheck: - $(FLAKE8) --ignore=X999 "$(PROJ)" "$(TESTDIR)" + $(FLAKE8) "$(PROJ)" "$(TESTDIR)" flakediag: -$(MAKE) flakecheck diff --git a/requirements/pkgutils.txt b/requirements/pkgutils.txt index ef39a5df..85b4d080 100644 --- a/requirements/pkgutils.txt +++ b/requirements/pkgutils.txt @@ -5,3 +5,4 @@ flakeplus>=1.1 tox>=2.3.1 sphinx2rst>=1.0 bumpversion +pep257 @@ -49,7 +49,7 @@ commands = pip install -U -r{toxinidir}/requirements/dev.txt [testenv:flake8] commands = - flake8 --ignore=X999 {toxinidir}/kombu {toxinidir}/t + flake8 {toxinidir}/kombu {toxinidir}/t [testenv:flakeplus] commands = |