From e7672a0aa9f7a3f73de7d4ce9eada8498848a254 Mon Sep 17 00:00:00 2001 From: Norbert Illes Date: Mon, 22 Feb 2016 15:38:25 +0100 Subject: [PATCH] Add tox.ini configuration to run bashate tests This commit implements a simple tox.ini configuration to run bashate style checker against all files in the ocf directory. Partial-Bug: #1508559 Change-Id: I34b3fc108a86d902d0d856f632b5221e14f1f118 Signed-off-by: Norbert Illes --- tox.ini | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..790ea29 --- /dev/null +++ b/tox.ini @@ -0,0 +1,11 @@ +[tox] +envlist = bashate +skipsdist = True + +[testenv] +whitelist_externals = bash + +[testenv:bashate] +deps = bashate +commands = bash -c "bashate --verbose {toxinidir}/ocf/*" +