From cc8f6110755e8e9943be49cac6089fa8f1e6aab3 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 21 Mar 2026 07:43:37 +0100 Subject: [PATCH] sharing/integ_tests: extend exclude for legacy setup.py --- setup.py.legacy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py.legacy b/setup.py.legacy index d0eb791f..83eb3830 100644 --- a/setup.py.legacy +++ b/setup.py.legacy @@ -60,7 +60,7 @@ setup( license="GNU GPL v3", platforms="Any", packages=find_packages( - exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), + exclude=["*.tests", "*.tests.*", "tests.*", "tests", "integ_tests"]), package_data={"radicale": [*web_files, "py.typed"]}, entry_points={"console_scripts": ["radicale = radicale.__main__:run"]}, install_requires=install_requires,