# HG changeset patch # User Marc Abramowitz # Date 2015-04-23 23:14:51 # Node ID 552e47cd0f36ee7039418061a91f9456a25335b7 # Parent 8c1258f69892b47598d2fa4923d393b5715d2c3f tests: restore pytest norecursedirs default patterns This replaces d741b99effdf by adressing the root cause: 5c8c77b7ca56 removed the default exclude of .* (and thus also .eggs/ used by latest setuptools) and *.egg (used by older setuptools). diff --git a/setup.cfg b/setup.cfg --- a/setup.cfg +++ b/setup.cfg @@ -11,7 +11,7 @@ detailed-errors = 1 nologcapture = 1 [pytest] -norecursedirs = kallithea/tests/scripts .tox .eggs +norecursedirs = .* *.egg kallithea/tests/scripts [compile_catalog] domain = kallithea