Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Stop suggesting REUSE_DB until we figure out jazzband#76.
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Rose committed May 26, 2012
1 parent 7076a5a commit a4865e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django_nose/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,9 @@ def setup_databases(self):
orig_db_name = connection.settings_dict['NAME']
connection.settings_dict['NAME'] = test_db_name

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

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

0 comments on commit a4865e8

Please sign in to comment.