Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dax/jcl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rousselie <dax@happycoders.org>2007-05-13 18:11:50 +0400
committerDavid Rousselie <dax@happycoders.org>2007-05-13 18:11:50 +0400
commit74aa7b02df4a3143ae02c82743a7b3544a9585d4 (patch)
treeaed7abfa9cbe5e3578c56e6c48a8dbc3440a4a28 /setup.py
parent046bade075dc9da855bf94efb072d985b4d50f2e (diff)
Move unit tests in src module hierarchy
- Python cannot merge a same module from to different folder so merge 'src' and 'tests' folder into one. darcs-hash:20070513141150-86b55-892f79fdc18fb69f5b8513ea7a31b01f8eb68f0e.gz
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 901919f..cfd64f3 100644
--- a/setup.py
+++ b/setup.py
@@ -30,4 +30,4 @@ setup(name = 'jcl', \
url = 'http://people.happycoders.org/dax/projects/jcl', \
package_dir = {'': 'src'}, \
packages = ['jcl', 'jcl.jabber', 'jcl.model'], \
- test_suite = 'run_tests.test_suite')
+ test_suite = 'jcl.tests.suite')