diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-12-08 16:23:49 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-12-08 16:23:49 +0100 |
commit | 8c0fbff6e05e5e4afe5605925052f114f2b95ba2 (patch) | |
tree | 86790fd3d4eafa8e24dde2c531f1780c3e91b031 /README | |
parent | 87e4cd5a4581094f490f79d4f1cf91f51897660f (diff) | |
download | bsfs-8c0fbff6e05e5e4afe5605925052f114f2b95ba2.tar.gz bsfs-8c0fbff6e05e5e4afe5605925052f114f2b95ba2.tar.bz2 bsfs-8c0fbff6e05e5e4afe5605925052f114f2b95ba2.zip |
code evaluation rc files
Diffstat (limited to 'README')
-rw-r--r-- | README | 52 |
1 files changed, 52 insertions, 0 deletions
@@ -3,3 +3,55 @@ The Black Star File System ========================== +### 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 bsfs + + + +#### 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 ... +$ + + + + |