summaryrefslogtreecommitdiff
path: root/tools/fast8.sh
Commit message (Collapse)AuthorAgeFilesLines
* Use pre-commit for 'pep8' tox target, bump versionsStephen Finucane2023-05-101-15/+0
| | | | | | | | | | | | | | We want to bump the versions of hacking, but doing so requires changes in two places: '.pre-commit-config.yaml' and 'tox.ini'. This is silly: we can simply use tox to handle pre-commit and leave all other dependencies to pre-commit. Do this, migrating bandit to pre-commit and bumping the other dependencies in the process. We remove the 'fast8' target and tool, since pre-commit is plenty fast here. Change-Id: Ifdc582ecc3b4479ea9ed9abcb16577c6e8b2f5c1 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
* Pep8 environment to run on delta code onlySheel Rana2016-05-121-0/+15
Currently tox -epep8 will run flake8 on whole code. To make this fast, flake8 support is added for only updated(delta) code. Same can be run by "tox -efast8". Change-Id: I9c55fed32ae3060c21ec278398e9e07fb4a0fe13 Implements: BP tox-pep8-diff-part-only