It allows running tox vs py27 (epydoc forces py27).
It also fixes 2 indent issues.
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Change-Id: I63e28089a56147b359a72eb330b5badbc6fc7d7f
def thread_execute(method, *args, **kwargs):
- with ThreadPoolExecutor(max_workers=2) as executor:
- result = executor.submit(method, *args, **kwargs)
- return result
+ with ThreadPoolExecutor(max_workers=2) as executor:
+ result = executor.submit(method, *args, **kwargs)
+ return result
def mock_invalid_lfid():
def thread_execute(method, *args, **kwargs):
- with ThreadPoolExecutor(max_workers=2) as executor:
- result = executor.submit(method, *args, **kwargs)
- return result
+ with ThreadPoolExecutor(max_workers=2) as executor:
+ result = executor.submit(method, *args, **kwargs)
+ return result
class MemCursor(object):
commands = sphinx-build -W -b html docs/ docs/_build
[testenv:pep8]
+basepython=python2.7
deps = flake8
commands = flake8 {toxinidir}
[flake8]
+basepython=python2.7
# H803 skipped on purpose per list discussion.
# E123, E125 skipped as they are invalid PEP-8.
exclude = build,dist,doc,legacy,.eggs,.git,.tox,.venv,testapi_venv,venv
[pytest]
+basepython=python2.7
testpaths = opnfv_testapi/tests
python_functions = test_*