1
0
mirror of https://github.com/django/django.git synced 2025-07-04 01:39:20 +00:00

newforms-admin: Removed an extraneous print call in runtests.py.

git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7958 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Brian Rosner 2008-07-18 22:38:27 +00:00
parent aaff207f81
commit 2c48a0b69d

View File

@ -140,7 +140,6 @@ def django_tests(verbosity, interactive, test_labels):
for model_dir, model_name in get_invalid_models(): for model_dir, model_name in get_invalid_models():
model_label = '.'.join([model_dir, model_name]) model_label = '.'.join([model_dir, model_name])
if not test_labels or model_name in test_labels: if not test_labels or model_name in test_labels:
print >> sys.stderr,'****', model_label
extra_tests.append(InvalidModelTestCase(model_label)) extra_tests.append(InvalidModelTestCase(model_label))
try: try:
# Invalid models are not working apps, so we cannot pass them into # Invalid models are not working apps, so we cannot pass them into