From 3dce835e27d071ac3fcb34729049be64bc74552d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 8 Mar 2025 20:16:33 +0100 Subject: [PATCH] build: Include `conftest.py` and test assets in source distribution Include the `conftest.py` file and test assets in the source distribution archives explicitly. Otherwise, only `test_*.py` files are included, and they are insufficient to run tests. --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..12f0695 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include test/*.py +graft test/assets