diff options
author | toonn <toonn@toonn.io> | 2018-10-09 19:12:52 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2019-06-18 13:26:21 +0200 |
commit | 85e1c59ab9f918a2437fda8161b68cc1934ef33e (patch) | |
tree | 89256ab41abfcf5f6dd8f839a26f537bfd78bf6c | |
parent | a007755400344fe1418d74add9787d2ab0482ca7 (diff) | |
download | ranger-85e1c59ab9f918a2437fda8161b68cc1934ef33e.tar.gz |
Mention the test_py target in HACKING.md
-rw-r--r-- | HACKING.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/HACKING.md b/HACKING.md index aeb4f072..c3faf3ca 100644 --- a/HACKING.md +++ b/HACKING.md @@ -8,7 +8,9 @@ Coding Style * Use docstrings with `pydoc` in mind * Follow the PEP8 style guide: https://www.python.org/dev/peps/pep-0008/ * Always run `make test` before submitting a new PR. `pylint`, `flake8`, - `pytest`, `doctest` and `shellcheck` need to be installed. + `pytest`, `doctest` and `shellcheck` need to be installed. (If you don't + change any shell scripts you can run `make test_py` and you don't need the + `shellcheck` dependency but it's an awesome tool, so check it out : ) * When breaking backward compatibility with old configuration files or plugins, please include a temporary workaround code that provides a compatibility layer and mark it with a comment that includes the word `COMPAT`. For |