diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-11-25 14:41:38 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-11-25 14:41:38 +0100 |
commit | c9a1dea230054f5d6f40b7fd5e3930609c5f6416 (patch) | |
tree | bae302ce52d659f251d571094f1caac7e5901e7f /README | |
parent | 9ce32829b2bb85907a34a543bfcaa9183d1e362c (diff) | |
download | bsie-c9a1dea230054f5d6f40b7fd5e3930609c5f6416.tar.gz bsie-c9a1dea230054f5d6f40b7fd5e3930609c5f6416.tar.bz2 bsie-c9a1dea230054f5d6f40b7fd5e3930609c5f6416.zip |
code analysis tool configs and minor fixes
Diffstat (limited to 'README')
-rw-r--r-- | README | 51 |
1 files changed, 51 insertions, 0 deletions
@@ -3,3 +3,54 @@ Black Star Information Extraction ================================= +### Developer tools setup + +#### Test coverage (coverage) + +Resources: +* https://coverage.readthedocs.io/en/6.5.0/index.html +* https://nedbatchelder.com/blog/200710/flaws_in_coverage_measurement.html + +Commands: +$ pip install coverage +$ coverage run ; coverage html ; xdg-open .htmlcov/index.html + + + +#### Static code analysis (pylint) + +Resources: +* https://github.com/PyCQA/pylint +* https://pylint.org/ +* https://pylint.pycqa.org/en/latest/user_guide/messages/messages_overview.html#messages-overview + +Commands: +$ pip install pylint +$ pylint bsie + + + +#### Type analysis (mypy) + +Resources: +* https://github.com/python/mypy +* https://mypy.readthedocs.io/en/stable/ + +Commands: +$ pip install mypy +$ mypy + + + +#### Documentation (sphinx) + +Resources: +* +* + +Commands: +$ pip install ... +$ + + + |