From dfd08685101e8ae5cbe8947c2a727927cffea4f3 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 28 Jul 2019 22:05:59 +0200 Subject: [PATCH] Use flake8 under Tox and fix complaints --- .travis.yml | 17 ++++++++++++----- README.md | 8 ++++++++ moulinette/interfaces/__init__.py | 2 +- moulinette/interfaces/api.py | 2 +- moulinette/interfaces/cli.py | 1 - moulinette/utils/log.py | 2 +- setup.cfg | 4 ++-- tox.ini | 10 +++++++++- 8 files changed, 34 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3d17609a..288c76db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,14 @@ language: python -install: pip install tox pep8 -python: - - 2.7 -script: - - pep8 moulinette + +matrix: + include: + - python: 2.7 + env: TOXENV=py27 + - python: 2.7 + env: TOXENV=lint + +install: + - pip install tox + +script: - tox diff --git a/README.md b/README.md index dd61aafd..c3464927 100644 --- a/README.md +++ b/README.md @@ -55,3 +55,11 @@ Requirements * python-gnupg (>= 0.3) * python-ldap (>= 2.4) * PyYAML + +Testing +------- + +``` +$ pip install tox +$ tox +``` diff --git a/moulinette/interfaces/__init__.py b/moulinette/interfaces/__init__.py index 9bcc921a..a42683b3 100644 --- a/moulinette/interfaces/__init__.py +++ b/moulinette/interfaces/__init__.py @@ -645,7 +645,7 @@ class PositionalsFirstHelpFormatter(argparse.HelpFormatter): def _format_usage(self, usage, actions, groups, prefix): if prefix is None: - # TWEAK : not using gettext here... + # TWEAK : not using gettext here... prefix = 'usage: ' # if usage is specified, use that diff --git a/moulinette/interfaces/api.py b/moulinette/interfaces/api.py index 82034a1f..17c00a1f 100644 --- a/moulinette/interfaces/api.py +++ b/moulinette/interfaces/api.py @@ -11,7 +11,7 @@ from gevent.queue import Queue from geventwebsocket import WebSocketError from bottle import run, request, response, Bottle, HTTPResponse -from bottle import get, post, install, abort, delete, put +from bottle import abort from moulinette import msignals, m18n, DATA_DIR from moulinette.core import MoulinetteError, clean_session diff --git a/moulinette/interfaces/cli.py b/moulinette/interfaces/cli.py index ce7a2726..70e2833a 100644 --- a/moulinette/interfaces/cli.py +++ b/moulinette/interfaces/cli.py @@ -7,7 +7,6 @@ import locale import logging from argparse import SUPPRESS from collections import OrderedDict -import time import pytz from datetime import date, datetime diff --git a/moulinette/utils/log.py b/moulinette/utils/log.py index d57c0b50..6a856c2f 100644 --- a/moulinette/utils/log.py +++ b/moulinette/utils/log.py @@ -3,7 +3,7 @@ import logging # import all constants because other modules try to import them from this # module because SUCCESS is defined in this module -from logging import (addLevelName, setLoggerClass, Logger, getLogger, NOTSET, +from logging import (addLevelName, setLoggerClass, Logger, getLogger, NOTSET, # noqa DEBUG, INFO, WARNING, ERROR, CRITICAL) diff --git a/setup.cfg b/setup.cfg index 9d6e5230..db1dde69 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ -[pep8] -ignore = E501,E128,E731 +[flake8] +ignore = E501,E128,E731,E722 diff --git a/tox.ini b/tox.ini index 33cdb31f..7c3a2648 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,7 @@ [tox] -envlist = py27 +envlist = + py27 + lint skipdist = True isolated_build = True @@ -15,3 +17,9 @@ deps = requests-mock >= 1.6.0, < 2.0 commands = pytest {posargs} + +[testenv:lint] +commands = flake8 moulinette test +deps = flake8 +skip_install = True +usedevelop = False