summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2020-04-09 12:31:41 +0200
committerAndreas Jaeger <jaegerandi@gmail.com>2020-04-16 06:43:27 +0000
commit57eb87149ff177ac23be821260fa6e544ad010bf (patch)
tree5f371b1c3daa4aa5efbf2cf796115bfa67854638 /tox.ini
parenta27dc56f525606c1ec1046e5c1f9cc57ca1f9f11 (diff)
downloadheat-57eb87149ff177ac23be821260fa6e544ad010bf.tar.gz
Fix hacking warnings
Fix some warnings found by hacking and enable them again. Change-Id: Ia09de4d0fda752a009b9246b4e6d485601cd9562
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 1 insertions, 6 deletions
diff --git a/tox.ini b/tox.ini
index 62df7fa82..5467dc1ac 100644
--- a/tox.ini
+++ b/tox.ini
@@ -108,19 +108,14 @@ commands = bandit -r heat -x tests --skip B101,B104,B107,B110,B310,B311,B404,B41
[flake8]
show-source = true
-# E117 over-indented
# E123 closing bracket does not match indentation of opening bracket's line
# E226 missing whitespace around arithmetic operator
# E241 multiple spaces after ','
# E305 expected 2 blank lines after class or function definition, found 1
# E402 module level import not at top of file
-# E731 do not assign a lambda expression, use a def
-# E741 ambiguous variable name 'l'
-# F841 local variable 'ex' is assigned to but never used
# W503 line break before binary operator
# W504 line break after binary operator
-# W605 invalid escape sequence '\ '
-ignore = E117,E123,E226,E241,E305,E402,E731,E741,F841,W503,W504,W605
+ignore = E123,E226,E241,E402,W503,W504
exclude=.*,dist,*lib/python*,*egg,build,*convergence/scenarios/*
max-complexity=23