Skip to content

Commit

Permalink
Run flake8 and pylint during CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmrk committed Nov 28, 2018
1 parent 7cb9dc2 commit 4d5c848
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
TESTS_REQUIRE = [
"asynctest>=0.12.0,<1.0.0",
"coverage>=4.5,<5.0",
"docker>=3.5.1"
"docker>=3.5.1",
"flake8",
"pylint"
]
DOCS_REQUIRE = [
"Sphinx>=1.7,<2.0",
Expand All @@ -18,10 +20,7 @@
EXAMPLES_REQUIRE = [
"aioconsole>=0.1.7,<1.0.0"
]
DEV_REQUIRE = [
"flake8",
"pylint"
]
DEV_REQUIRE = []


def read(file_path):
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ commands =
coverage run -m unittest discover tests/unit
python -m unittest discover tests/integration
coveralls
flake8
pylint aiocometd

0 comments on commit 4d5c848

Please sign in to comment.