Merge "Add codespell non voting test"

This commit is contained in:
Zuul 2024-04-18 18:12:09 +00:00 committed by Gerrit Code Review
commit ad5090e755
3 changed files with 19 additions and 0 deletions

View File

@ -69,3 +69,12 @@ exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
import-order-style = pep8
application-import-names = sushy_oem_idrac
filename = *.py
[testenv:codespell]
description =
Run codespell to check spelling
deps = codespell
# note(JayF): {posargs} lets us run `tox -ecodespell -- -w` to get codespell
# to correct spelling issues in our code it's aware of.
commands =
codespell {posargs}

View File

@ -3,3 +3,7 @@
- check-requirements
- openstack-cover-jobs
- openstack-python3-jobs
check:
jobs:
- sushy-oem-idrac-tox-codespell:
voting: false

View File

@ -0,0 +1,6 @@
- job:
name: sushy-oem-idrac-tox-codespell
parent: openstack-tox
timeout: 7200
vars:
tox_envlist: codespell