From 8d2979ed02f8d61b17887bf20d4bdc78ad73f3b3 Mon Sep 17 00:00:00 2001 From: adustman Date: Sun, 8 Mar 2009 17:45:52 +0000 Subject: [PATCH] Move tests into their own directory to parallel trunk --- MySQLdb/MANIFEST.in | 5 +---- MySQLdb/{ => tests}/capabilities.py | 0 MySQLdb/{ => tests}/dbapi20.py | 0 MySQLdb/{ => tests}/test_MySQLdb_capabilities.py | 0 MySQLdb/{ => tests}/test_MySQLdb_dbapi20.py | 0 5 files changed, 1 insertion(+), 4 deletions(-) rename MySQLdb/{ => tests}/capabilities.py (100%) rename MySQLdb/{ => tests}/dbapi20.py (100%) rename MySQLdb/{ => tests}/test_MySQLdb_capabilities.py (100%) rename MySQLdb/{ => tests}/test_MySQLdb_dbapi20.py (100%) diff --git a/MySQLdb/MANIFEST.in b/MySQLdb/MANIFEST.in index 0b78a83..9a8a4d5 100644 --- a/MySQLdb/MANIFEST.in +++ b/MySQLdb/MANIFEST.in @@ -1,14 +1,11 @@ recursive-include doc *.txt +recursive-include tests *.py include MANIFEST.in include MANIFEST include ChangeLog include HISTORY include GPL include pymemcompat.h -include dbapi20.py -include test_MySQLdb_dbapi20.py -include test_capabilities.py -include test_MySQLdb_capabilities.py include metadata.cfg include site.cfg include setup_common.py diff --git a/MySQLdb/capabilities.py b/MySQLdb/tests/capabilities.py similarity index 100% rename from MySQLdb/capabilities.py rename to MySQLdb/tests/capabilities.py diff --git a/MySQLdb/dbapi20.py b/MySQLdb/tests/dbapi20.py similarity index 100% rename from MySQLdb/dbapi20.py rename to MySQLdb/tests/dbapi20.py diff --git a/MySQLdb/test_MySQLdb_capabilities.py b/MySQLdb/tests/test_MySQLdb_capabilities.py similarity index 100% rename from MySQLdb/test_MySQLdb_capabilities.py rename to MySQLdb/tests/test_MySQLdb_capabilities.py diff --git a/MySQLdb/test_MySQLdb_dbapi20.py b/MySQLdb/tests/test_MySQLdb_dbapi20.py similarity index 100% rename from MySQLdb/test_MySQLdb_dbapi20.py rename to MySQLdb/tests/test_MySQLdb_dbapi20.py