From 33fed944448fa61fdc1e295d35607f84f381d12e Mon Sep 17 00:00:00 2001 From: Denis Laxalde Date: Tue, 13 Sep 2016 17:06:35 +0200 Subject: [PATCH] [tox] Exclude symlinks from check-manifest call These are not handled by check-manifest, see https://github.com/mgedmin/check-manifest/issues/69. --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a6aa1e5ee..22e68d9d9 100644 --- a/tox.ini +++ b/tox.ini @@ -53,7 +53,10 @@ skip_install = true 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