config options: add hacking check for help text length

Adds a hacking check if a config option provides enough help text.
To do so, the check counts the length of the help text. It uses
a low number in order to avoid a break. As soon as we have agreed
on a higher standard and changed the options accordingly, we can
increase that number.

Change-Id: If31339c428953c6a7bf721ff92e5999e8cb5b569
This commit is contained in:
Markus Zoeller 2015-11-05 15:14:29 +01:00
parent 524458202b
commit b502b59603

View File

@ -57,6 +57,7 @@ Nova Specific Commandments
- [N344] Python 3: do not use dict.iteritems.
- [N345] Python 3: do not use dict.iterkeys.
- [N346] Python 3: do not use dict.itervalues.
- [N347] Provide enough help text for config options
Creating Unit Tests
-------------------