Django

Code

Show
Ignore:
Timestamp:
10/02/08 07:57:13 (3 months ago)
Author:
russellm
Message:

Promoted --verbosity to be a top level option for all management commands. Also added -v as a consistent short form of --verbosity. This is mostly to save Malcolm's poor arthritic fingers.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/runtests.py

    r8731 r9110  
    143143            extra_tests.append(InvalidModelTestCase(model_label)) 
    144144            try: 
    145                 # Invalid models are not working apps, so we cannot pass them into  
     145                # Invalid models are not working apps, so we cannot pass them into 
    146146                # the test runner with the other test_labels 
    147147                test_labels.remove(model_name) 
    148148            except ValueError: 
    149149                pass 
    150      
     150 
    151151    # Run the test suite, including the extra validation tests. 
    152152    from django.test.simple import run_tests