Merge "Use pre-commit to run pep8 check"

This commit is contained in:
Zuul
2025-10-02 15:31:36 +00:00
committed by Gerrit Code Review
25 changed files with 211 additions and 183 deletions

27
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,27 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
# Replaces or checks mixed line ending
- id: mixed-line-ending
args: ['--fix', 'lf']
exclude: '.*\.(svg)$'
# Forbid files which have a UTF-8 byte-order marker
- id: check-byte-order-marker
# Checks that non-binary executables have a proper shebang
- id: check-executables-have-shebangs
# Check for files that contain merge conflict strings.
- id: check-merge-conflict
# Check for debugger imports and py37+ breakpoint()
# calls in python source
- id: debug-statements
- id: check-yaml
files: .*\.(yaml|yml)$
- repo: https://opendev.org/openstack/hacking
rev: 7.0.0
hooks:
- id: hacking
additional_dependencies:
- flake8-import-order>0.18.0,<0.19.0
- horizon

View File

@@ -1,7 +1,4 @@
hacking>=6.1.0,<6.2.0 # Apache-2.0
coverage>=4.0 # Apache-2.0 coverage>=4.0 # Apache-2.0
flake8-import-order>=0.18.0,<0.19.0 # LGPLv3
nodeenv>=0.9.4 # BSD nodeenv>=0.9.4 # BSD
testtools>=2.2.0 # MIT testtools>=2.2.0 # MIT

View File

@@ -24,7 +24,11 @@ setenv =
commands = python manage.py test {posargs:heat_dashboard.test.integration} --settings=heat_dashboard.test.settings --tag integration commands = python manage.py test {posargs:heat_dashboard.test.integration} --settings=heat_dashboard.test.settings --tag integration
[testenv:pep8] [testenv:pep8]
commands = flake8 {posargs} skip_install = true
deps =
pre-commit
commands =
pre-commit run -a
[testenv:venv] [testenv:venv]
commands = {posargs} commands = {posargs}