From e0a3ca5df9044795347a8ba770e919b1d47fb76e Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Thu, 17 May 2012 04:49:37 +0200 Subject: [PATCH] =?utf8?q?Rename=20tests=20=E2=86=92=20test=20and=20distri?= =?utf8?q?bute=20test=20files=20too?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The rename is done for consistency with other projects, and distributing the tests is of course useful. --- MANIFEST.in | 1 + setup.py | 2 +- {tests => test}/__init__.py | 0 {tests => test}/test_acls.py | 0 4 files changed, 2 insertions(+), 1 deletion(-) rename {tests => test}/__init__.py (100%) rename {tests => test}/test_acls.py (100%) diff --git a/MANIFEST.in b/MANIFEST.in index 6f223ca..f570711 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,3 +6,4 @@ include acl.c include setup.cfg include doc/conf.py include doc/*.rst +include test/*.py diff --git a/setup.py b/setup.py index dbb5f56..54cf97e 100755 --- a/setup.py +++ b/setup.py @@ -44,5 +44,5 @@ setup(name="pylibacl", libraries=libs, define_macros=macros, )], - test_suite="tests", + test_suite="test", ) diff --git a/tests/__init__.py b/test/__init__.py similarity index 100% rename from tests/__init__.py rename to test/__init__.py diff --git a/tests/test_acls.py b/test/test_acls.py similarity index 100% rename from tests/test_acls.py rename to test/test_acls.py -- 2.39.2