diff options
author | xudan <xudan16@huawei.com> | 2018-07-05 22:37:35 -0400 |
---|---|---|
committer | Georg Kunz <georg.kunz@ericsson.com> | 2018-07-25 09:17:09 +0000 |
commit | 58b91dd3baaaf72ab65062a4804403cd4a5935b2 (patch) | |
tree | 801b1f39b3bee25ecbaae387339955d55651e98b /cvp/tox.ini | |
parent | 947f1bf0147c40971fdae36feecd477ab3caf3b8 (diff) |
Move OVP web portal code to a separate repo
The new repo for web portal is https://gerrit.opnfv.org/gerrit/dovetail-webportal
JIRA: DOVETAIL-671
Change-Id: Iac085abc3d175b9a091d70d0448af56c7a6845e9
Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'cvp/tox.ini')
-rw-r--r-- | cvp/tox.ini | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/cvp/tox.ini b/cvp/tox.ini deleted file mode 100644 index d300f1a6..00000000 --- a/cvp/tox.ini +++ /dev/null @@ -1,43 +0,0 @@ -# Tox (http://tox.testrun.org/) is a tool for running tests -# in multiple virtualenvs. This configuration file will run the -# test suite on all supported python versions. To use it, "pip install tox" -# and then run "tox" from this directory. - -[tox] -envlist = pep8,py27 -skipsdist = True -sitepackages = True - -[testenv] -usedevelop = True -install_command = pip install -U {opts} {packages} -deps = - -rrequirements.txt - -rtest-requirements.txt -commands= - py.test \ - --basetemp={envtmpdir} \ - --cov \ - --cov-report term-missing \ - --cov-report xml \ - {posargs} -setenv= - HOME = {envtmpdir} - PYTHONPATH = {toxinidir} - -[testenv:pep8] -deps = flake8 -commands = flake8 {toxinidir} - -[flake8] -# H803 skipped on purpose per list discussion. -# E123, E125 skipped as they are invalid PEP-8. - -show-source = True -ignore = E123,E125,H803,E501 -builtins = _ -exclude = build,dist,doc,legacy,.eggs,.git,.tox,.venv,testapi_venv,venv - -[pytest] -testpaths = opnfv_testapi/tests -python_functions = test_* |