summaryrefslogtreecommitdiffstats
path: root/dogtag.pylintrc
Commit message (Collapse)AuthorAgeFilesLines
* Restored 'dogtag.pylintrc' and 'pylint-build-scan.py' to top-level directoryMatthew Harmsen2016-04-071-0/+252
| | | | to promote easier use with patches.
* Move pylint-build-scan.py to scripts directoryChristian Heimes2015-08-141-270/+0
| | | | | | Move internal helper and its configuration out of the project's root directory into scripts/. Also use re instead of fnmatch to find the upgrade scriptlets.
* Fix for pylint 1.3 --> 1.4Matthew Harmsen2015-03-181-0/+5
| | | | | Placing 'ldap' on the whitelist was insufficient for the Fedora 22 i686 platform, therefore, ldap was added to 'ignored-modules'.
* Fix for pylint 1.3 --> 1.4 (e1101 - no member on all C extension)Matthew Harmsen2015-03-171-0/+5
| | | | - Reference: http://stackoverflow.com/questions/28437071/pylint-1-4-reports-e1101no-member-on-all-c-extensions
* Fixed pylint report.Endi S. Dewata2015-02-051-7/+4
| | | | | | | | | | | | | | | Previously pylint report was saved it into a file which may not be accessible on a build system. The pylint-build-scan.sh has been changed to display the report so it will appear in the build log. The pylint configuration has also been modified to disable C and R messages by default. This way when other errors or warnings occur the build will fail without having to check for specific codes. Some Python codes have been modified to reduce the number of pylint warnings. https://fedorahosted.org/pki/ticket/703
* Implemented CertResource methods in CertClient on the python side.Abhishek Koneru2014-05-291-1/+2
| | | | | | | | The methods currently implemented in the CertClient are: get_cert(), review_cert(), list_certs(), revoke_cert(), revoke_ca_cert(), hold_cert(), unrevoke_cert() Also included some test code in main method.
* Adding pylint scan to the build.Abhishek Koneru2013-08-091-0/+262
Adding the scripts and the pylintrc file to the build process. The script is called before packaging the classes in the compose scripts. Ticket #316