diff --git a/README.md b/README.md index 88cfa81c..3e2e1b62 100644 --- a/README.md +++ b/README.md @@ -183,6 +183,7 @@ All releases will meet the following test criteria: * 100% success for [pylint](https://pylint.readthedocs.io/en/stable/). * 100% success for [ansible-lint](https://ansible.readthedocs.io/projects/lint/) allowing only false positives. * 100% success for [safety](https://docs.safetycli.com/safety-docs) vulnerability checks. +* 100% success for [bandit](https://bandit.readthedocs.io/) vulnerability checks. * 100% success for [pip-missing-reqs](https://github.com/adamtheturtle/pip-check-reqs/blob/master/README.rst) checks for missing dependencies. For more details on testing the IBM Z HMC collection, including the specific version diff --git a/docs/source/development.rst b/docs/source/development.rst index 786f9178..3df8a098 100644 --- a/docs/source/development.rst +++ b/docs/source/development.rst @@ -135,7 +135,7 @@ Testing Again, an invocation of Make runs against the currently active Python environment. -There are four kinds of tests currently, available as make targets: +There are several kinds of tests currently, available as make targets: * ``make check`` - Run flake8 * ``make pylint`` - Run pylint @@ -143,6 +143,7 @@ There are four kinds of tests currently, available as make targets: * ``make sanity`` - Run Ansible sanity tests * ``make ansible_lint`` - Run ansible_lint * ``make safety`` - Run safety vulnerability checks +* ``make bandit`` - Run bandit vulnerability checks * ``make check_reqs`` - Run pip-missing-reqs to perform missing dependency checks * ``make test`` - Run unit and function tests with test coverage * ``make end2end_mocked`` - Run end2end tests against a mocked environment