
Replace all tabs with 4 spaces, and re-enable bashate warnings E002 and E003. Change-Id: I11f3a9ca9b910555e1b1477c52288493f9bb0244
17 lines
592 B
INI
17 lines
592 B
INI
[tox]
|
|
envlist = py27, py33
|
|
|
|
[testenv]
|
|
deps = {env:BASHATE_INSTALL_PATH:bashate==0.5.1}
|
|
|
|
[testenv:bashate]
|
|
whitelist_externals = bash
|
|
commands = bash -c "find {toxinidir} \
|
|
-not \( -type d -name .?\* -prune \) \
|
|
-not \( -type d -name output-\* -prune \) \
|
|
-not \( -type d -name overlay-\* -prune \) \
|
|
-not \( -type d -name buildroot -prune \) \
|
|
-not \( -type d -name download -prune \) \
|
|
-type f -name \*.sh \
|
|
-print0 | xargs -0 bashate -v -iE010,E011"
|