From 9894ebdfdc328ed5b4a1e1d8304507d6cb5bc726 Mon Sep 17 00:00:00 2001 From: Qian Min Chen Date: Sat, 18 Aug 2018 16:12:18 +0800 Subject: [PATCH] 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 773c7e1..17b1071 100644 --- a/tox.ini +++ b/tox.ini @@ -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]