forked from sookasa/django-timedelta-field
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtests.py
62 lines (47 loc) · 1.7 KB
/
tests.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import os
import sys
import unittest
import doctest
import django
BASE_PATH = os.path.dirname(__file__)
def main(db_engine='sqlite3'):
"""
Standalone django model test with a 'memory-only-django-installation'.
You can play with a django model without a complete django app installation.
http://www.djangosnippets.org/snippets/1044/
"""
os.environ["DJANGO_SETTINGS_MODULE"] = "django.conf.global_settings"
from django.conf import global_settings
global_settings.INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'timedelta',
'django_coverage',
)
global_settings.DATABASES = {
'default': {
'ENGINE': 'django.db.backends.%s' % db_engine,
'NAME': 'django-timedelta-field',
}
}
global_settings.STATIC_URL = "/static/"
global_settings.MEDIA_ROOT = os.path.join(BASE_PATH, 'static')
global_settings.STATIC_ROOT = global_settings.MEDIA_ROOT
global_settings.SECRET_KEY = '334ebe58-a77d-4321-9d01-a7d2cb8d3eea'
global_settings.COVERAGE_REPORT_HTML_OUTPUT_DIR = os.path.join(BASE_PATH, '.coverage')
global_settings.COVERAGE_USE_STDOUT = True
if os.environ.get('COVERAGE', None):
from django_coverage import coverage_runner
test_runner = coverage_runner.CoverageRunner
else:
from django.test.utils import get_runner
test_runner = get_runner(global_settings)
test_runner = test_runner()
if getattr(django, 'setup', None):
django.setup()
failures = test_runner.run_tests(['timedelta'])
sys.exit(failures)
def test_postgres():
main('postgresql_psycopg2')
if __name__ == '__main__':
main()