Skip to content

Commit a4865e8

Browse files
author
Erik Rose
committed
Stop suggesting REUSE_DB until we figure out #76.
1 parent 7076a5a commit a4865e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

django_nose/runner.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -277,9 +277,9 @@ def setup_databases(self):
277277
orig_db_name = connection.settings_dict['NAME']
278278
connection.settings_dict['NAME'] = test_db_name
279279

280-
if not _reusing_db() and _can_support_reuse_db(connection):
281-
print ('To reuse old database "%s" for speed, set env var '
282-
'REUSE_DB=1.' % test_db_name)
280+
# if not _reusing_db() and _can_support_reuse_db(connection):
281+
# print ('To reuse old database "%s" for speed, set env var '
282+
# 'REUSE_DB=1.' % test_db_name)
283283

284284
if _should_create_database(connection):
285285
# We're not using _skip_create_test_db, so put the DB name back:

0 commit comments

Comments
 (0)