Add missing PYTHONPATH variable export to pylint job in CI
The old .gitlab-ci.yaml accidentally worked because pylint was importing modules internally, probably as a side-effect of testing other code. This pylint invocation errors out when PYTHONPATH is not set: $ pylint --rcfile $CI_PROJECT_DIR/.pylintrc bin/tests/system/keymgr/testpolicy.py ************* Module testpolicy bin/tests/system/keymgr/testpolicy.py:13:0: E0401: Unable to import 'isc' (import-error) And this invocation works even without PYTHONPATH: $ pylint --rcfile $CI_PROJECT_DIR/.pylintrc bin/python/setup.py bin/tests/system/keymgr/testpolicy.py