pre-commit: Bump versions
... and use native hooks for bandit and hacking Change-Id: I5b89fd1fe61bb5b77e31b4bec4b345105efecd94
This commit is contained in:
parent
fc2ff43f52
commit
eb52fef09d
@ -1,15 +1,6 @@
|
|||||||
# We from the Oslo project decided to pin repos based on the
|
|
||||||
# commit hash instead of the version tag to prevend arbitrary
|
|
||||||
# code from running in developer's machines. To update to a
|
|
||||||
# newer version, run `pre-commit autoupdate` and then replace
|
|
||||||
# the newer versions with their commit hash.
|
|
||||||
|
|
||||||
default_language_version:
|
|
||||||
python: python3
|
|
||||||
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: 9136088a246768144165fcc3ecc3d31bb686920a # v3.3.0
|
rev: v5.0.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
# Replaces or checks mixed line ending
|
# Replaces or checks mixed line ending
|
||||||
@ -27,13 +18,13 @@ repos:
|
|||||||
- id: debug-statements
|
- id: debug-statements
|
||||||
- id: check-yaml
|
- id: check-yaml
|
||||||
files: .*\.(yaml|yml)$
|
files: .*\.(yaml|yml)$
|
||||||
- repo: local
|
- repo: https://opendev.org/openstack/hacking
|
||||||
|
rev: 7.0.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: hacking
|
||||||
name: flake8
|
additional_dependencies: []
|
||||||
additional_dependencies:
|
- repo: https://github.com/PyCQA/bandit
|
||||||
- hacking>=6.1.0,<6.2.0
|
rev: 1.7.10
|
||||||
language: python
|
hooks:
|
||||||
entry: flake8
|
- id: bandit
|
||||||
files: '^.*\.py$'
|
args: ['-x', 'tests']
|
||||||
exclude: '^(doc|releasenotes|tools)/.*$'
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
hacking>=6.1.0,<6.2.0 # Apache-2.0
|
|
||||||
|
|
||||||
fixtures>=3.0.0 # Apache-2.0/BSD
|
fixtures>=3.0.0 # Apache-2.0/BSD
|
||||||
testscenarios>=0.4 # Apache-2.0/BSD
|
testscenarios>=0.4 # Apache-2.0/BSD
|
||||||
stestr>=2.1.0 # Apache-2.0
|
stestr>=2.1.0 # Apache-2.0
|
||||||
@ -15,8 +13,3 @@ oslo.log>=3.36.0 # Apache-2.0
|
|||||||
coverage>=4.0 # Apache-2.0
|
coverage>=4.0 # Apache-2.0
|
||||||
|
|
||||||
requests_mock>=1.5.0 # Apache-2.0
|
requests_mock>=1.5.0 # Apache-2.0
|
||||||
|
|
||||||
# Bandit security code scanner
|
|
||||||
bandit>=1.7.0,<1.8.0 # Apache-2.0
|
|
||||||
|
|
||||||
pre-commit>=2.6.0 # MIT
|
|
||||||
|
8
tox.ini
8
tox.ini
@ -20,10 +20,10 @@ commands =
|
|||||||
stestr slowest
|
stestr slowest
|
||||||
|
|
||||||
[testenv:pep8]
|
[testenv:pep8]
|
||||||
|
deps =
|
||||||
|
pre-commit>=2.6.0 # MIT
|
||||||
commands =
|
commands =
|
||||||
pre-commit run -a
|
pre-commit run -a
|
||||||
# TODO(stephenfin): Add mypy here once it's passing
|
|
||||||
{[testenv:bandit]commands}
|
|
||||||
|
|
||||||
[testenv:cover]
|
[testenv:cover]
|
||||||
setenv =
|
setenv =
|
||||||
@ -52,10 +52,6 @@ commands =
|
|||||||
commands =
|
commands =
|
||||||
mypy oslo_config
|
mypy oslo_config
|
||||||
|
|
||||||
[testenv:bandit]
|
|
||||||
commands =
|
|
||||||
bandit -r oslo_config -x tests -n5
|
|
||||||
|
|
||||||
[testenv:releasenotes]
|
[testenv:releasenotes]
|
||||||
allowlist_externals =
|
allowlist_externals =
|
||||||
rm
|
rm
|
||||||
|
Loading…
Reference in New Issue
Block a user