Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,18 @@ These checks are run on all code merged to master, and may also be run locally f
directory:

```shell
pip install black pylint_runner isort mypy
pip install black isort mypy pylint
mypy
isort --check
isort --check .
black --check .
pylint_runner
pylint .
```

Note that you can speed up the execution of Pylint by running it in the parallel mode with the `-j`
option: `pylint -j 0 .`.
See the [official documentation](https://pylint.readthedocs.io/en/latest/user_guide/usage/run.html#parallel-execution)
for details.

Black and isort, in addition to checking code, can also automatically apply fixes. To fix all code
in the python-open-controls tree, run:

Expand Down
Loading