From 325455dfd65dcb9ebed5c4a8238045120a9a27a2 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Thu, 12 Mar 2020 14:49:19 -0500 Subject: [PATCH] Stop using hacking for anything We've had it in here as a way to pin pycodestyle. But that's not worth the energy to deal with things like hacking now spewing incorrect messages about our apache license headers not being right even though they are. (it's because sdague dedcided that nobody has more than 11 lines of header) zuul just uses a bare flake8. Match that choice. Change-Id: I5bc847d151801fd31281389ee65184e964ddd2a5 Depends-On: https://review.opendev.org/712778 --- test-requirements.txt | 3 +-- tox.ini | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test-requirements.txt b/test-requirements.txt index 0b7c38033..f5d169adb 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,5 +1,4 @@ -# Nodepool uses hacking for its dependencies -hacking>=0.10.2,<0.11 +flake8 coverage fixtures>=0.3.12 mock>=1.0 diff --git a/tox.ini b/tox.ini index 4cd653041..5a665b4c3 100644 --- a/tox.ini +++ b/tox.ini @@ -63,6 +63,6 @@ commands = stestr --test-path ./nodepool/tests/functional/openshift run --no-sub [flake8] # These are ignored intentionally in zuul projects; # please don't submit patches that solely correct them or enable them. -ignore = E124,E125,E129,E402,E741,H,W503,W504 +ignore = E124,E125,E129,E402,E741,W503,W504 show-source = True exclude = .venv,.tox,dist,doc,build,*.egg