955d21b3c3
During stack.sh - git clone open-cas repo - compile open-cas - install open-cas - configure open-cas During unstack.sh - remove cached devices - remove cache instance - uninstall open-cas Change-Id: I037b9cf585048b63de6a5f554620a89a8de67e1b Signed-off-by: Liang Fang <liang.a.fang@intel.com>
25 lines
772 B
INI
25 lines
772 B
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = bashate
|
|
|
|
[testenv]
|
|
usedevelop = False
|
|
|
|
[testenv:bashate]
|
|
deps = bashate
|
|
whitelist_externals = bash
|
|
commands = bash -c "find {toxinidir} \
|
|
-not \( -type d -name .?\* -prune \) \
|
|
-not \( -type d -name doc -prune \) \
|
|
-type f \
|
|
-not -name \*~ \
|
|
-not -name \*.md \
|
|
\( \
|
|
-name \*.sh -or \
|
|
-name \*rc -or \
|
|
-name functions\* -or \
|
|
-wholename \*/lib/\* \
|
|
\) \
|
|
-print0 | xargs -0 bashate -v -iE006"
|