From ae8bb3d192b2dcdc397875fdae997590c9a490ff Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Tue, 5 Jun 2018 11:03:53 -0500 Subject: [PATCH] Remove unused pylint tox target The pylint target referenced a script that does not exist in the repo, so obviously this tox target is not used. This also cleans up an empty [hacking] section since we're cleaning up tox.ini. Change-Id: I6fcd1caecd84effdab2f4053821e7cb7933aae7a --- tox.ini | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tox.ini b/tox.ini index 4fe27796..33d440c1 100644 --- a/tox.ini +++ b/tox.ini @@ -18,9 +18,6 @@ downloadcache = ~/cache/pip [testenv:pep8] commands = flake8 {posargs} -[testenv:pylint] -commands = bash tools/lintstack.sh - [testenv:cover] commands = python setup.py testr --coverage --testr-args='{posargs}' @@ -40,5 +37,3 @@ commands = python setup.py build_sphinx ignore = E125,E251 exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools - -[hacking]