Add codespell non voting test

Change-Id: I19e8418da6ccd1d508b1102228c9b697a38442e4
This commit is contained in:
Riccardo Pittau 2024-03-27 14:39:05 +01:00
parent f3b4c830f5
commit 3f6068f1df
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