Browse Source

Add unittest directory discovery.

Ask Solem 16 years ago
parent
commit
cb2a07e16d
2 changed files with 5 additions and 0 deletions
  1. 4 0
      celery/tests/__init__.py
  2. 1 0
      setup.py

+ 4 - 0
celery/tests/__init__.py

@@ -0,0 +1,4 @@
+from djangox.test.depth import alltests
+
+def suite():
+    return alltests(__file__, __name__)

+ 1 - 0
setup.py

@@ -32,6 +32,7 @@ setup(
     scripts=["celery/bin/celeryd"],
     zip_safe=False,
     install_requires=[
+        'django-unittest-depth',
         'simplejson',
         'carrot',
         'django',