summaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/tox.ini
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-03-13 12:36:55 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-03-15 16:58:22 +0000
commitdf17a7ff9ba569227e8a2b5b1863800bbb8e1806 (patch)
tree749011aaf1b514e17c31edd9c12252a95f0aec18 /bootstrap/vagrant-onap/tox.ini
parent1393fc2533cae1271126498f1661dec893922dae (diff)
Deprecate vagrant-onap tool
The vagrant-onap tool needs to be moved to its own repo to have better control of versions and autonomy. This change removes the project from integration repository. Change-Id: I90bd4505a9fc7376c31a780aa1b833ee2663af3e Signed-off-by: Victor Morales <victor.morales@intel.com> Depends-On: I79df8c35fccaa266a789217d441a6cf1183bd42a Issue-ID: INT-441
Diffstat (limited to 'bootstrap/vagrant-onap/tox.ini')
-rw-r--r--bootstrap/vagrant-onap/tox.ini30
1 files changed, 0 insertions, 30 deletions
diff --git a/bootstrap/vagrant-onap/tox.ini b/bootstrap/vagrant-onap/tox.ini
deleted file mode 100644
index 6ab309fdf..000000000
--- a/bootstrap/vagrant-onap/tox.ini
+++ /dev/null
@@ -1,30 +0,0 @@
-[tox]
-minversion = 1.6
-skipsdist = True
-envlist = bashate
-
-[testenv]
-passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
-usedevelop = False
-install_command = pip install {opts} {packages}
-
-[testenv:bashate]
-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 \) \
- -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
-# E043 Arithmetic compound has inconsistent return semantics
- -print0 | xargs -0 bashate -v -iE006 -eE005,E042,E043"
-
-[testenv:docs]
-deps = sphinx
-commands = sphinx-build -W -b html doc/source doc/build/html