Commit 0e92f706 authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed runtests.py problem from [3177] where it assumed you were running the...

Fixed runtests.py problem from [3177] where it assumed you were running the tests from within the tests directory

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3181 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 5f471618
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -35,8 +35,8 @@ ALWAYS_INSTALLED_APPS = [

def get_test_models():
    models = []
    for loc in MODEL_TESTS_DIR_NAME, REGRESSION_TESTS_DIR_NAME:
        for f in os.listdir(loc):
    for loc, dirpath in (MODEL_TESTS_DIR_NAME, MODEL_TEST_DIR), (REGRESSION_TESTS_DIR_NAME, REGRESSION_TEST_DIR):
        for f in os.listdir(dirpath):
            if f.startswith('__init__') or f.startswith('.') or f.startswith('sql'):
                continue
            models.append((loc, f))