diff options
author | Victor Morales <victor.morales@intel.com> | 2017-10-23 11:56:43 -0700 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-10-23 11:56:43 -0700 |
commit | 6d280a1548070d12dee8dae9b3de6ccba6a6e655 (patch) | |
tree | 75cd2be939c3078157e31e80ed61029f56a52aea /bootstrap/vagrant-onap/tox.ini | |
parent | 41a427a8806633f4dd93faa73d9dbe891c91f57b (diff) |
Update UTs for VNFSDK
The Unit tests for VNF SDK component was skipping some compile
validations. This change fixes those UT and the tox bash syntax.
Change-Id: Ibaac790ac3096b44e7ba99986aee2ea526345562
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-Id: INT-290
Diffstat (limited to 'bootstrap/vagrant-onap/tox.ini')
-rw-r--r-- | bootstrap/vagrant-onap/tox.ini | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/bootstrap/vagrant-onap/tox.ini b/bootstrap/vagrant-onap/tox.ini index 674810006..6ab309fdf 100644 --- a/bootstrap/vagrant-onap/tox.ini +++ b/bootstrap/vagrant-onap/tox.ini @@ -12,11 +12,13 @@ install_command = pip install {opts} {packages} deps = {env:BASHATE_INSTALL_PATH:bashate} whitelist_externals = bash -commands = bash -c "find {toxinidir}/{tests,lib,tools} \ - -not \( -type d -path *files* -prune \) \ - -not \( -type f -name .*.swp* -prune \) \ - -not \( -type f -name *.ps1 -prune \) \ - -type f \ +commands = bash -c "find {toxinidir}/{tests,lib,tools} \ + -not \( -type d -path *files* -prune \) \ + -not \( -type f -name .*.swp* -prune \) \ + -not \( -type f -name *.ps1 -prune \) \ + -not \( -type f -name installed-software* -prune \) \ + -not \( -type f -name *projects.txt -prune \) \ + -type f \ # E005 file does not begin with #! or have a .sh prefix # E006 check for lines longer than 79 columns # E042 local declaration hides errors |