|
@@ -16,7 +16,7 @@ import celery as distmeta
|
|
|
|
|
|
|
|
|
class RunTests(Command):
|
|
|
- description = "Run the django test suite from the testproj dir."
|
|
|
+ description = "Run the django test suite from the tests dir."
|
|
|
|
|
|
user_options = []
|
|
|
|
|
@@ -31,7 +31,7 @@ class RunTests(Command):
|
|
|
|
|
|
def run_tests(self):
|
|
|
this_dir = os.getcwd()
|
|
|
- testproj_dir = os.path.join(this_dir, "testproj")
|
|
|
+ testproj_dir = os.path.join(this_dir, "tests")
|
|
|
os.chdir(testproj_dir)
|
|
|
sys.path.append(testproj_dir)
|
|
|
from django.core.management import execute_manager
|