# HG changeset patch # User Denis Laxalde # Date 1473779195 -7200 # Node ID 10ecd586a9a8b3e86730133730195d3906369a41 # Parent 96d1aed1e2b5bbe2c2ad90d5b48a5f4017d71762 [tox] Exclude symlinks from check-manifest call These are not handled by check-manifest, see https://github.com/mgedmin/check-manifest/issues/69. diff -r 96d1aed1e2b5 -r 10ecd586a9a8 tox.ini --- a/tox.ini Thu Jul 21 15:32:36 2016 +0200 +++ b/tox.ini Tue Sep 13 17:06:35 2016 +0200 @@ -53,7 +53,10 @@ deps = check-manifest commands = - check-manifest {toxinidir} + check-manifest {toxinidir} \ +# ignore symlinks that are not recognized by check-manifest, see +# https://github.com/mgedmin/check-manifest/issues/69 + --ignore cubicweb/devtools/test/data/cubes/i18ntestcube,cubicweb/test/data/legacy_cubes* [pytest] python_files = *test_*.py