summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-09-12 17:00:02 -0400
committerDR695H <dr695h@att.com>2019-09-12 17:00:02 -0400
commit90959e128c419b0f3c0dd51d2ead51918a73b301 (patch)
tree019fb58449616eeda81706dfbde2ede5c29d6122
parentbcf40e7f9d342ca7e0fca9fe3b8a10b82851cd9b (diff)
small change to check the build process
Issue-ID: TEST-211 Change-Id: Id154c0affba7e614e8bbb51741ea2457a5a5504e Signed-off-by: DR695H <dr695h@att.com>
-rw-r--r--robotframework-onap/tox.ini5
1 files changed, 4 insertions, 1 deletions
diff --git a/robotframework-onap/tox.ini b/robotframework-onap/tox.ini
index 08ebf48..f7276b4 100644
--- a/robotframework-onap/tox.ini
+++ b/robotframework-onap/tox.ini
@@ -9,13 +9,13 @@ usedevelop = True
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
-install_command = pip install {opts} {packages}
[testenv:pep8]
basepython = python3
changedir = {toxinidir}
commands =
flake8 --max-line-length 120 {[tox]modules}
+install_command = pip3 install {opts} {packages}
[testenv:pylint]
basepython = python3
@@ -24,6 +24,7 @@ deps =
pylint
commands =
pylint -f parseable --ignore-imports=y --disable=locally-disabled --max-line-length 120 --exit-zero -ry {[tox]modules}
+install_command = pip3 install {opts} {packages}
[testenv:py3]
basepython = python3
@@ -35,8 +36,10 @@ commands = nosetests --with-xunit \
--cover-xml \
--cover-html \
tests
+install_command = pip3 install {opts} {packages}
[testenv:py27]
basepython = python2.7
commands =
nosetests --all-modules tests
+install_command = pip install {opts} {packages} \ No newline at end of file