kytos / of_core

Kytos Main OpenFlow Network Application (NApp)
MIT License
1 stars 19 forks source link

Fix linter issues and enable linting in tox #44

Closed hdiogenes closed 5 years ago

hdiogenes commented 5 years ago

Unit tests were fixed in #42. Although I fixed a lot of linter errors in #43, some are still pending. We need to fix every pending issue listed by python setup.py lint and re-enable linting in tox (diff below), so that Scrutinizer runs it automatically again.

diff --git a/tox.ini b/tox.ini
index 016ddb2..3584be6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,5 @@
 [tox]
-#envlist = py36,coverage,lint
-envlist = py36,coverage
+envlist = py36,coverage,lint

 [testenv]
hdiogenes commented 5 years ago

PR #45 was opened to fix this issue.