From b1464d6d3e2c2d4dd9b56b8a779b13f8fa23e09c Mon Sep 17 00:00:00 2001 From: Po-Chuan Hsieh Date: Sun, 13 Sep 2026 18:35:17 +0800 Subject: [PATCH] Add tests/ to source distribution It allows downstream sdist users (e.g. FreeBSD) to run tests. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 87068b18d..551c0a492 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,9 @@ packages = [ { include = "saml2", from = "src" }, { include = "saml2test", from = "src" }, ] +include = [ + { path = "tests", format = "sdist" }, +] [project.scripts] make_metadata = "saml2.tools.make_metadata:main"