diff options
author | Nate Potter <nathaniel.potter@intel.com> | 2017-08-01 16:28:48 -0700 |
---|---|---|
committer | Nate Potter <nathaniel.potter@intel.com> | 2017-08-01 16:30:09 -0700 |
commit | 9fa943bd8217c2ad2ad95a1ec07043a16def19b0 (patch) | |
tree | 3aa14c3e93dfc8989240e4028c66b870fa6272e5 /bootstrap | |
parent | 455beceeac70836e49b41f85e9399037e0255751 (diff) |
Update tox bashate command
Update the bashate find command to not include .pem and .cfg files.
Change-Id: I42cd4b1361e4771e52fd9ba5b77b7ffc04e86f11
Signed-off-by: Nate Potter <nathaniel.potter@intel.com>
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/vagrant-onap/tox.ini | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bootstrap/vagrant-onap/tox.ini b/bootstrap/vagrant-onap/tox.ini index d4b9a207b..3a2743d51 100644 --- a/bootstrap/vagrant-onap/tox.ini +++ b/bootstrap/vagrant-onap/tox.ini @@ -17,6 +17,8 @@ deps = whitelist_externals = bash commands = bash -c "find {toxinidir}/{tests,lib,tools} \ -not \( -type f -name *.template -prune \) \ + -not \( -type f -name *.pem -prune \) \ + -not \( -type f -name *.cfg -prune \) \ -type f \ # E005 file does not begin with #! or have a .sh prefix # E006 check for lines longer than 79 columns |