From c17e1446042a2e923ef9b27d88eca92fcd4a1f9d Mon Sep 17 00:00:00 2001 From: Alex Chen Date: Thu, 16 Jul 2026 15:16:34 +0000 Subject: [PATCH] Include tests in the source distribution The repository already ships certifi/tests, but MANIFEST.in only listed package data files, so sdist builds omitted the suite. Add a recursive-include so downstream can test from the sdist. Closes #226 Signed-off-by: Alex Chen --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 25be1608..eb42bc44 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,6 @@ include MANIFEST.in README.rst LICENSE certifi/cacert.pem certifi/py.typed +recursive-include certifi/tests * exclude .github/ recursive-exclude .github +global-exclude *.py[cod] __pycache__ .DS_Store