Modify the 'tox.ini' file

Since the horizon remove the 'run_tests.sh' file,
so there should remove '.venv' from the flake8 exclude
in the '.tox.ini' file.

Change-Id: Ief1d67e3d387590ef86e2abc45139f69d69912e3
This commit is contained in:
Qian Min Chen 2018-08-18 16:12:18 +08:00
parent 7570aa4d41
commit 9894ebdfdc
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[flake8]
exclude = .venv,.git,.tox,dist,*lib/python*,*egg,build,node_modules
exclude = .git,.tox,dist,*lib/python*,*egg,build,node_modules
show-source = True
[hacking]