diff --git a/tools/add-projects-to-main.py b/tools/add-projects-to-main.py index 818f04663b..f661ea9b69 100644 --- a/tools/add-projects-to-main.py +++ b/tools/add-projects-to-main.py @@ -14,8 +14,6 @@ # License for the specific language governing permissions and limitations # under the License. -import collections - import ruamel.yaml diff --git a/tools/ci2project.py b/tools/ci2project.py index 0b7c3e9370..b98915d778 100644 --- a/tools/ci2project.py +++ b/tools/ci2project.py @@ -62,7 +62,7 @@ while not done: changes = json.loads(r.text[4:]) for change in changes: if (not change.get('labels') or - not change.get('labels').get('Verified')): + not change.get('labels').get('Verified')): continue for key, value in change['labels']['Verified'].items(): if key == 'value': diff --git a/tools/normalize_projects_yaml.py b/tools/normalize_projects_yaml.py index f8635fb640..10dcd47af2 100755 --- a/tools/normalize_projects_yaml.py +++ b/tools/normalize_projects_yaml.py @@ -31,7 +31,7 @@ def main(): for project in data: if ('upstream' in project and - 'track-upstream' not in project.get('options', [])): + 'track-upstream' not in project.get('options', [])): del project['upstream'] with open('gerrit/projects.yaml', 'w') as out: diff --git a/tox.ini b/tox.ini index ac5cfc8a56..6b3bba01f2 100644 --- a/tox.ini +++ b/tox.ini @@ -10,9 +10,7 @@ passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY [testenv:linters] commands = {toxinidir}/tools/run-bashate.sh - # TODO(jaegerandi): Remove parameter to test everywhere once - # Zuul v2 files have been removed - flake8 jenkins/scripts roles playbooks nodepool + flake8 [testenv:gerrit] deps = PyYAML