
This review moves bashate check to pre-commit and also adds other pre-commit checks for the repo. Change-Id: I2ec26fc3036b4bfc9fa09fd088bd0e9089fae9fe Signed-off-by: Chandan Kumar (raukadah) <chkumar@redhat.com>
18 lines
301 B
INI
18 lines
301 B
INI
[tox]
|
|
minversion = 3.18.0
|
|
skipsdist = True
|
|
envlist = bashate
|
|
|
|
[testenv]
|
|
usedevelop = False
|
|
install_command = pip install {opts} {packages}
|
|
|
|
[testenv:linters]
|
|
description =
|
|
Run style checks.
|
|
skip_install = true
|
|
deps =
|
|
pre-commit
|
|
commands =
|
|
pre-commit run --all-files --show-diff-on-failure
|