(DatabaseError: no such table: django_session) ERROR during Django 1.3 selenium testing
问题 I'm trying to use django selenium for testing my django1.3 application. The database backend for the testing is sqlite3. Here is a snippet of my settings file. if 'test' in sys.argv: DB_ENGINE = 'django.db.backends.sqlite3' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'TEST_NAME': ':memory:', 'NAME': 'database_one', }, 'database_two': { 'ENGINE': 'django.db.backends.sqlite3', ] 'TEST_NAME': ':memory:', 'NAME': 'database_two', }, 'database_three': { 'ENGINE': 'django.db