add pylint to list of required linting tools

With pylint being run in the CI, passing it is required now.
This commit is contained in:
Sarah Hoffmann
2021-01-15 09:04:04 +01:00
parent 8e53f63036
commit de724aa576
4 changed files with 14 additions and 4 deletions

View File

@@ -31,6 +31,7 @@ unit tests (using PHPUnit). It has the following additional requirements:
* [behave test framework](https://behave.readthedocs.io) >= 1.2.5
* [phpunit](https://phpunit.de) >= 7.3
* [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer)
* [Pylint](https://pylint.org/)
The documentation is built with mkdocs:
@@ -46,7 +47,7 @@ To install all necessary packages run:
```sh
sudo apt install php-cgi phpunit php-codesniffer \
python3-pip python3-setuptools python3-dev
python3-pip python3-setuptools python3-dev pylint3
pip3 install --user behave mkdocs
```