pre-commit: Bump versions
... and use native hooks for bandit and hacking Change-Id: Ia60ca0082a1b4d99905f523f8977db5275e06658
This commit is contained in:
parent
6c5bfd80e8
commit
5bbc92d164
@ -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:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: 9136088a246768144165fcc3ecc3d31bb686920a # v3.3.0
|
||||
rev: v5.0.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
# Replaces or checks mixed line ending
|
||||
@ -27,13 +18,13 @@ repos:
|
||||
- id: debug-statements
|
||||
- id: check-yaml
|
||||
files: .*\.(yaml|yml)$
|
||||
- repo: local
|
||||
- repo: https://opendev.org/openstack/hacking
|
||||
rev: 7.0.0
|
||||
hooks:
|
||||
- id: flake8
|
||||
name: flake8
|
||||
additional_dependencies:
|
||||
- hacking>=3.0.1,<3.1.0
|
||||
language: python
|
||||
entry: flake8
|
||||
files: '^.*\.py$'
|
||||
exclude: '^(doc|releasenotes|tools)/.*$'
|
||||
- id: hacking
|
||||
additional_dependencies: []
|
||||
- repo: https://github.com/PyCQA/bandit
|
||||
rev: 1.7.10
|
||||
hooks:
|
||||
- id: bandit
|
||||
args: ['-x', 'tests']
|
||||
|
@ -220,8 +220,8 @@ class Datastore(object):
|
||||
session.vim, self.ref, 'summary')
|
||||
|
||||
def get_connected_hosts(self, session):
|
||||
"""Get a list of usable (accessible, mounted, read-writable) hosts where
|
||||
the datastore is mounted.
|
||||
"""Get a list of usable (accessible, mounted, read-writable) hosts
|
||||
where the datastore is mounted.
|
||||
|
||||
:param: session: session
|
||||
:return: list of HostSystem managed object references
|
||||
@ -336,7 +336,8 @@ class DatastorePath(object):
|
||||
return self._rel_path
|
||||
|
||||
def join(self, *paths):
|
||||
"""Join one or more path components intelligently into a datastore path.
|
||||
"""Join one or more path components intelligently into a datastore
|
||||
path.
|
||||
|
||||
If any component is an absolute path, all previous components are
|
||||
thrown away, and joining continues. The return value is the
|
||||
|
@ -1,5 +1,4 @@
|
||||
# Hacking already pins down pep8, pyflakes and flake8
|
||||
hacking>=3.0.1,<3.1.0 # Apache-2.0
|
||||
hacking>=7.0.0,<7.1.0 # Apache-2.0
|
||||
|
||||
fixtures>=3.0.0 # Apache-2.0/BSD
|
||||
testtools>=2.2.0 # MIT
|
||||
@ -9,8 +8,5 @@ stestr>=2.0.0 # Apache-2.0
|
||||
# [testenv:cover]
|
||||
# deps = {[testenv]deps} coverage
|
||||
coverage!=4.4,>=4.0 # Apache-2.0
|
||||
bandit>=1.7.0,<1.8.0 # Apache-2.0
|
||||
ddt>=1.0.1 # MIT
|
||||
oslo.context>=2.19.2 # Apache-2.0
|
||||
|
||||
pre-commit>=2.6.0 # MIT
|
||||
|
Loading…
Reference in New Issue
Block a user