mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-04-08 15:50:58 +00:00
50 lines
1.4 KiB
Python
Executable file
50 lines
1.4 KiB
Python
Executable file
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
from django.conf import settings
|
|
from django.core.management import call_command
|
|
|
|
def runtests():
|
|
if not settings.configured:
|
|
# Choose database for settings
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': ':memory:'
|
|
}
|
|
}
|
|
test_db = os.environ.get('DB', 'sqlite')
|
|
if test_db == 'mysql':
|
|
DATABASES['default'].update({
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'NAME': 'modeltranslation',
|
|
'USER': 'root',
|
|
})
|
|
elif test_db == 'postgres':
|
|
DATABASES['default'].update({
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'USER': 'postgres',
|
|
'NAME': 'modeltranslation',
|
|
'OPTIONS': {
|
|
'autocommit': True,
|
|
}
|
|
})
|
|
|
|
# Configure test environment
|
|
settings.configure(
|
|
DATABASES = DATABASES,
|
|
INSTALLED_APPS = (
|
|
'modeltranslation',
|
|
),
|
|
ROOT_URLCONF = None, # tests override urlconf, but it still needs to be defined
|
|
)
|
|
|
|
failures = call_command(
|
|
'test', 'modeltranslation', interactive=False, failfast=False,
|
|
verbosity=2)
|
|
sys.exit(bool(failures))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
runtests()
|