diff options
author | Vratko Polak <vrpolak@cisco.com> | 2020-12-09 15:50:06 +0100 |
---|---|---|
committer | Vratko Polak <vrpolak@cisco.com> | 2020-12-09 15:50:06 +0100 |
commit | e2fc8a8dc9a6d5433b9a51c437da2b40f1214738 (patch) | |
tree | 077da70e7fbb7ccffa666f753f49cf6a62c85f13 /tox.ini | |
parent | 0bb14d79edb065bc97fdd11a7bfa7d1605266e08 (diff) |
Tox: Add GPL license checker
A common mistage is to add a file into GPL directory,
with Apache license only.
This adds a tox checker to vote -1 on such changes,
gpl_license.log contains the list of affected files.
There are TODOs related to unlicensed files
or unconventional GPL licenses.
Change-Id: I267e4fb98afd199d5acc7d211068b28c97b31dc9
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -26,8 +26,8 @@ [tox] # Fast and brief checkers to front, slow or verbose checkers to back. -envlist = tc_naming, tc_coverage, copyright_year, new_line_length, line_length, - autogen, pylint, doc_verify +envlist = tc_naming, tc_coverage, copyright_year, gpl_license, new_line_length, + line_length, autogen, pylint, doc_verify # The following is needed as tox requires setup.py by default. skipsdist = true @@ -53,6 +53,11 @@ commands = bash {[tox]checker_dir}/copyright_year.sh whitelist_externals = /bin/bash commands = bash -c "bash {[tox]checker_dir}/doc_verify.sh || true" +[testenv:gpl_license] +whitelist_externals = /bin/bash +setenv = PYTHONPATH = {toxinidir} +commands = bash {[tox]checker_dir}/gpl_license.sh + [testenv:line_length] whitelist_externals = /bin/bash # Fix all transgressions and remove the " || true" workaround. |