From 00652bf909199496c416b11c085c9f3338ca517c Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sun, 24 Apr 2016 06:51:26 +0100 Subject: [PATCH] Include tests in release source tarball It would be great to include the test suite in the pypi release tarball. That way people who download and build the release can run the tests to ensure the library is working. Linux distributions, such as Debian, base their packages of Python modules on the pypi release. This means the test suite can be run when building a Debian package, it should catch mistakes in the packaging or errors in dependencies. I've written some more on this topic on the Debian Python mailing list. https://lists.debian.org/debian-python/2016/04/msg00074.html --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 7a03e34..1656364 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ include AUTHORS ChangeLog *.rst LICENSE recursive-include docs * recursive-include examples * - +recursive-include tests *.py