Ticket #6168: runtests_bug.diff

File runtests_bug.diff, 569 bytes (added by floguy, 16 years ago)
  • tests/runtests.py

     
    143143
    144144    # Run the test suite, including the extra validation tests.
    145145    from django.test.simple import run_tests
    146     failures = run_tests(test_labels, verbosity=verbosity, interactive=interactive, extra_tests=extra_tests)
     146    failures = run_tests(test_models, verbosity=verbosity, interactive=interactive, extra_tests=extra_tests)
    147147    if failures:
    148148        sys.exit(failures)
    149149
Back to Top