Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tox.ini: Add flake8 tests to find Python syntax errors and undefined names #1577

Merged
merged 3 commits into from
Jul 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion component_sdk/python/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.
flake8
pytest
mock
mock
5 changes: 3 additions & 2 deletions component_sdk/python/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ usedevelop = True
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/test-requirements.txt
commands =
python -V
py.test -vvv -s {posargs}
flake8 --version
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
py.test -vvv -s {posargs}