forked from dcramer/django-uuidfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntests_sqlite.py
executable file
·36 lines (30 loc) · 962 Bytes
/
runtests_sqlite.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
import sys
from django.conf import settings
from optparse import OptionParser
if not settings.configured:
settings.configure(
DATABASE_ENGINE='django.db.backends.sqlite3',
DATABASE_NAME='uuidfield_test',
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'uuidfield_test',
}
},
INSTALLED_APPS=[
'django.contrib.contenttypes',
'uuidfield',
'uuidfield.tests',
],
ROOT_URLCONF='',
DEBUG=False,
)
from django_nose import NoseTestSuiteRunner
from runtests import runtests
if __name__ == '__main__':
parser = OptionParser()
parser.add_option('--verbosity', dest='verbosity', action='store', default=1, type=int)
parser.add_options(NoseTestSuiteRunner.options)
(options, args) = parser.parse_args()
runtests(*args, **options.__dict__)