From d8f5bf51e1fbe1a676552059b67ce3cdd357f13a Mon Sep 17 00:00:00 2001 From: Ossi Herrala Date: Mon, 25 Jul 2016 16:54:00 +0300 Subject: [PATCH] Fix exclude paths for flake8 3.0.0 Before flake8 3.0.0, the .tox directory was excluded by default. With 3.0.0 it needs to be explicitly excluded. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 5262d06..55a1d36 100644 --- a/tox.ini +++ b/tox.ini @@ -13,7 +13,7 @@ skip_install = true [flake8] ignore = E501 -exclude = ./build +exclude = build,dist,.git,.tox [pytest] addopts = --doctest-modules