From fb2bf2c6404ca45b7b96e22e3fcc3dd39c3c309d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Forr=C3=B3?= Date: Fri, 10 Mar 2023 22:02:44 +0100 Subject: [PATCH] Include the entire test suite in source distribution (#451) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit By default, only files matching the test/test*.py pattern are included in source distribution. This leaves the test suite unusable, because resources and some necessary scripts are missing. Fix that. Signed-off-by: Nikola Forró Co-authored-by: Dmitriy Musatkin <63878209+DmitriyMusatkin@users.noreply.github.com> --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 93d324bbc..a1ecf5f7e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -32,3 +32,5 @@ prune crt/aws-lc/tool prune crt/aws-lc/util include crt/aws-lc/util/fipstools/CMakeLists.txt include crt/aws-lc/util/fipstools/acvp/modulewrapper/CMakeLists.txt +# by default only test/test*.py are included, include the entire test suite +graft test